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 ezio.melotti
Recipients BreamoreBoy, ezio.melotti, loewis, louiscipher, santoso.wijaya, showard, terry.reedy
Date 2011-04-09.01:17:30
SpamBayes Score 4.5612703e-10
Marked as misclassified No
Message-id <1302311851.15.0.593693693974.issue4877@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW I tried to backport 825041fc8e2c and test_pyexpat runs without problem.
The snippet of code in msg79398 now raises a ValueError:
>>> from xml.parsers import expat
>>> f=open('/tmp/foo')
>>> p=expat.ParserCreate()
>>> f.close()
>>> p.ParseFile(f)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: I/O operation on closed file
History
Date User Action Args
2011-04-09 01:17:31ezio.melottisetrecipients: + ezio.melotti, loewis, terry.reedy, showard, santoso.wijaya, BreamoreBoy, louiscipher
2011-04-09 01:17:31ezio.melottisetmessageid: <1302311851.15.0.593693693974.issue4877@psf.upfronthosting.co.za>
2011-04-09 01:17:30ezio.melottilinkissue4877 messages
2011-04-09 01:17:30ezio.melotticreate