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.
2 parents 93e76f5 + b602ddf commit d20c5edCopy full SHA for d20c5ed
hack/verify-flags-underscore.py
@@ -35,7 +35,7 @@ def is_binary(pathname):
35
try:
36
with open(pathname, 'r') as f:
37
CHUNKSIZE = 1024
38
- while 1:
+ while True:
39
chunk = f.read(CHUNKSIZE)
40
if '\0' in chunk: # found null byte
41
return True
0 commit comments