Skip to content

Commit d98652e

Browse files
author
cclauss
authored
Update cpplint.py
1 parent 7e4c8b9 commit d98652e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpplint/cpplint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
import unicodedata
5454

5555
try:
56-
xrange
56+
xrange # Python 2
5757
except NameError:
58-
xrange = range
58+
xrange = range # Python 3
5959

6060

6161
_USAGE = """

0 commit comments

Comments
 (0)