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 danielsh
Recipients Arfrever, danielsh, einarfd, eli.bendersky, ezio.melotti, georg.brandl, jcea, larry, santoso.wijaya
Date 2012-12-19.17:19:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355937579.36.0.372560699097.issue16076@psf.upfronthosting.co.za>
In-reply-to
Content
Re the problem from msg 177134 ('./python -mtest test___all__ test_xml_etree' failing), it is a a preexisting problem, in the sense that applying just the Lib/test/ part of this patch suffices to trigger it.  Adding 'xml.etree' to the blacklist in test___all__.py:50 suffices to address the problem.  At a guess that is because when test___all__ imports the 'xml.etree' module, it doesn't filter out the '_elementtree' symbol like test_xml_etree.py:test_main() does.

New patch attached; differences to previous version:

- Removed debug prints.
- Skip test_pickling when testing the Python xml.etree.
  (The skips could be removed in the future, if/when the test___all__
  interaction problem is resolved.)
History
Date User Action Args
2012-12-19 17:19:43danielshsetrecipients: + danielsh, georg.brandl, jcea, larry, ezio.melotti, Arfrever, eli.bendersky, santoso.wijaya, einarfd
2012-12-19 17:19:39danielshsetmessageid: <1355937579.36.0.372560699097.issue16076@psf.upfronthosting.co.za>
2012-12-19 17:19:38danielshlinkissue16076 messages
2012-12-19 17:19:36danielshcreate