Re: file descriptors & fdopen
From: Scott Frankel (leknarf_at_pacbell.net)
Date: 12/06/04
- Next message: Josiah Carlson: "Re: Mean, median, and mode"
- Previous message: Paul McGuire: "Re: cut strings and parse for images"
- Maybe in reply to: Scott Frankel: "file descriptors & fdopen"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 6 Dec 2004 12:37:56 -0800 To: python-list@python.org
foo = open('foo.txt', 'w')
duh.
Thanks -
Scott
On Dec 6, 2004, at 11:27 AM, Scott Frankel wrote:
>
> Why does os.fdopen('foo.txt', 'w') require an integer?
> Ultimately, I want to create a new file on disk.
>
> Funny, I can't seem to suss-out how to create a new file without
> resorting
> to os.system('touch foo.txt'). ... Or maybe not so funny ...
>
> >>> foo = os.fdopen('foo.txt', 'w')
> Traceback (most recent call last):
> File "<stdin>", line 1, in ?
> TypeError: an integer is required
>
>
> Thanks in advance!
> Scott
>
>
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>
- Next message: Josiah Carlson: "Re: Mean, median, and mode"
- Previous message: Paul McGuire: "Re: cut strings and parse for images"
- Maybe in reply to: Scott Frankel: "file descriptors & fdopen"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|