Re: AUX File Writing Error

2007-02-15 Thread Gabriel Genellina
En Thu, 15 Feb 2007 03:34:59 -0300, John Machin [EMAIL PROTECTED] escribió: On Feb 15, 4:03 pm, [EMAIL PROTECTED] wrote: Is there any way I can create an AUX.csv file without the error? Probably not. AUX, CON, NUL, PRN, LPT, COM1, COM2 etc (with or without an extension) are reserved in

Re: AUX File Writing Error

2007-02-15 Thread Steve Holden
Gabriel Genellina wrote: En Thu, 15 Feb 2007 03:34:59 -0300, John Machin [EMAIL PROTECTED] escribió: On Feb 15, 4:03 pm, [EMAIL PROTECTED] wrote: Is there any way I can create an AUX.csv file without the error? Probably not. AUX, CON, NUL, PRN, LPT, COM1, COM2 etc (with or without an

Re: AUX File Writing Error

2007-02-15 Thread John Machin
On Feb 16, 12:13 am, Gabriel Genellina [EMAIL PROTECTED] wrote: En Thu, 15 Feb 2007 03:34:59 -0300, John Machin [EMAIL PROTECTED] escribió: On Feb 15, 4:03 pm, [EMAIL PROTECTED] wrote: Is there any way I can create an AUX.csv file without the error? Probably not. AUX, CON, NUL, PRN, LPT,

Re: AUX File Writing Error

2007-02-15 Thread Jean-Paul Calderone
On Thu, 15 Feb 2007 10:13:17 -0300, Gabriel Genellina [EMAIL PROTECTED] wrote: En Thu, 15 Feb 2007 03:34:59 -0300, John Machin [EMAIL PROTECTED] escribió: On Feb 15, 4:03 pm, [EMAIL PROTECTED] wrote: Is there any way I can create an AUX.csv file without the error? Probably not. AUX, CON, NUL,

Re: AUX File Writing Error

2007-02-15 Thread Gabriel Genellina
En Thu, 15 Feb 2007 11:34:53 -0300, John Machin [EMAIL PROTECTED] escribió: Probably not. AUX, CON, NUL, PRN, LPT, COM1, COM2 etc (with or without an extension) are reserved in Windows for specific devices for compatibility with MS-DOS 1.00 programs, which did that for compatibility

AUX File Writing Error

2007-02-14 Thread thewritersclub
Hi guys! I'm new to python so please be aware that I'm probably missing the obvious. Here's my problem... t = AUX f = open('c:\\' + t + '.csv', 'a') Traceback (most recent call last): File pyshell#37, line 1, in module f = open('c:\\' + t + '.csv', 'a') IOError: [Errno 2] No such file

Re: AUX File Writing Error

2007-02-14 Thread John Machin
On Feb 15, 4:03 pm, [EMAIL PROTECTED] wrote: Hi guys! I'm new to python so please be aware that I'm probably missing the obvious. Here's my problem... t = AUX f = open('c:\\' + t + '.csv', 'a') Traceback (most recent call last): File pyshell#37, line 1, in module f = open('c:\\'