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 meador.inge
Recipients loewis, meador.inge, petri.lehtinen
Date 2012-05-21.14:09:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337609371.02.0.889650237272.issue14862@psf.upfronthosting.co.za>
In-reply-to
Content
> can you give me an example of how it could break working code?

This is a bit contrived, but:

# my fdopen
def fdopen(fd):
    pass

fdopen(1)

# some stuff

from os import *

# more stuff

fdopen(1)

Here is a patch for 3.3 tip.  After reviewing the 'os' module documentation I found a few more cases.
History
Date User Action Args
2012-05-21 14:09:31meador.ingesetrecipients: + meador.inge, loewis, petri.lehtinen
2012-05-21 14:09:31meador.ingesetmessageid: <1337609371.02.0.889650237272.issue14862@psf.upfronthosting.co.za>
2012-05-21 14:09:30meador.ingelinkissue14862 messages
2012-05-21 14:09:30meador.ingecreate