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

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to