C:\Python27\Lib>grep "while True" *.py | wc -l
99
C:\Python27\Lib>grep "while 1" *.py | wc -l
117
C:\Python36\Lib>grep "while True" *.py | wc -l
131
C:\Python36\Lib>grep "while 1" *.py | wc -l
44
How much does the while True actually cost compared to nothing? -- Robin Becker -- https://mail.python.org/mailman/listinfo/python-list
