Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5380def commit e018dc5Copy full SHA for e018dc5
1 file changed
Parser/pgen/token.py
@@ -6,9 +6,7 @@ def generate_tokens(tokens):
6
for line in tokens:
7
line = line.strip()
8
9
- if not line:
10
- continue
11
- if line.strip().startswith('#'):
+ if not line or line.startswith('#'):
12
continue
13
14
name = line.split()[0]
@@ -22,9 +20,7 @@ def generate_opmap(tokens):
22
20
23
21
24
25
26
27
28
29
30
pieces = line.split()
0 commit comments