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