Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
Feature or enhancement
In Lib/filecmp.py,line 160, we use a variableok to check a condition. We use 0/1 to denote false/true here. A better coding style is using False/True.
Pitch
First, using True/False itself is a better coding style.
Second,if 1 is slower thanif True (although the difference is small).
Previous discussion
N/A