[Python-Dev] Compiling 2.7.2 on OS/2 (original) (raw)
Steven D'Aprano steve at pearwood.info
Mon Jan 9 11:02:57 CET 2012
- Previous message: [Python-Dev] Compiling 2.7.2 on OS/2
- Next message: [Python-Dev] Testing the tests by modifying the ordering of dict items.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Victor Stinner wrote:
- if os.name in ('nt', 'os2'): + if os.name in ('nt'): This change is wrong: it should be os.name == 'nt'.
Or possibly os.name in ('nt', ) (note the comma).
-- Steven
- Previous message: [Python-Dev] Compiling 2.7.2 on OS/2
- Next message: [Python-Dev] Testing the tests by modifying the ordering of dict items.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]