This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients David.Layton, Paolo.Elvati, Stefan.Pfeiffer, bethard, eric.araujo, manveru
Date 2012-02-03.14:32:57
SpamBayes Score 1.1133965e-07
Marked as misclassified No
Message-id <1328279578.82.0.551680442696.issue13824@psf.upfronthosting.co.za>
In-reply-to
Content
> Additionally, there is no way to prevent FileType from clobbering an existing file
> when used with write mode.
I think this deserves its own feature request: now that Python 3.3 has an “exclusive create” mode, argparse.FileType could gain support for it.  Would you open that request?

> Given these issues and others,
We have one issue and one missing feature; what are the other issues?

> it seems to me that the usefulness of FileType is outweighed by propensity to encourage bad
> coding.
I think the problem is not as bad as you paint it.  A great number of unclosed file handles may cause problem to some OSes, but that’s it.  On the plus side, the fact that argparse accepts for its type argument any callable that can check and convert a string input is simple, clean and works.  FileType is needed.

In packaging/distutils2 for example we have similar functions that return an open file object and never close it: the responsibility is at a higher level.  Other packaging code calling these functions does so in a with statement.  It is not evil by nature.

The problem here is that FileType may return stdin or stdout, so we can’t just always close the file object (or maybe we can, say using an atexit handler?).

> Perhaps, it would be best if FileType (or some replacement) simply checked that the file exists
But then you’d run into race conditions.  The only sure was to say if a file can be opened is to open it.
History
Date User Action Args
2012-02-03 14:32:58eric.araujosetrecipients: + eric.araujo, bethard, Paolo.Elvati, manveru, Stefan.Pfeiffer, David.Layton
2012-02-03 14:32:58eric.araujosetmessageid: <1328279578.82.0.551680442696.issue13824@psf.upfronthosting.co.za>
2012-02-03 14:32:58eric.araujolinkissue13824 messages
2012-02-03 14:32:57eric.araujocreate