Re: errno 22 instead of errno 2

2009-01-28 Thread Gabriel Genellina
En Wed, 28 Jan 2009 07:04:30 -0200, Tim Golden escribió: Glenn Linderman wrote: open("c:\abc","rb") This simple one-line script, produces errno 22 on Python 2.6, but errno 2 on Python 2.5.2 Just glancing quickly at the svn logs, there certainly were some changes around that area in 2008

Re: errno 22 instead of errno 2

2009-01-28 Thread Mark Hammond
On 28/01/2009 6:52 PM, Glenn Linderman wrote: open("c:\abc","rb") This simple one-line script, produces errno 22 on Python 2.6, but errno 2 on Python 2.5.2 Is this an unintentional regression? Or is this an intentional bug fix? The file doesn't exist (errno 2) but I guess on Windows it is also

Re: errno 22 instead of errno 2

2009-01-28 Thread Tim Golden
Glenn Linderman wrote: open("c:\abc","rb") This simple one-line script, produces errno 22 on Python 2.6, but errno 2 on Python 2.5.2 Is this an unintentional regression? Or is this an intentional bug fix? The file doesn't exist (errno 2) but I guess on Windows it is also somewhat an invali

errno 22 instead of errno 2

2009-01-27 Thread Glenn Linderman
open("c:\abc","rb") This simple one-line script, produces errno 22 on Python 2.6, but errno 2 on Python 2.5.2 Is this an unintentional regression? Or is this an intentional bug fix? The file doesn't exist (errno 2) but I guess on Windows it is also somewhat an invalid file name (errno 22).