Skip to content

Commit e744290

Browse files
committed
Remove redundant comments
1 parent b7589be commit e744290

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/json/tool.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
# the various parts, most notably strings and numbers,
1616
# where the regex given by the spec is much more complex.
1717
_color_pattern = re.compile(r'''
18-
(?P<string>"(\\.|[^"\\])*") | # String
19-
(?P<number>NaN|-?Infinity|[0-9\-+.Ee]+) | # Number
20-
(?P<boolean>true|false) | # Boolean
21-
(?P<null>null) # Null
18+
(?P<string>"(\\.|[^"\\])*") |
19+
(?P<number>NaN|-?Infinity|[0-9\-+.Ee]+) |
20+
(?P<boolean>true|false) |
21+
(?P<null>null)
2222
''', re.VERBOSE)
2323

2424

0 commit comments

Comments
 (0)