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 ethan.furman
Recipients Arfrever, eric.smith, ethan.furman, gvanrossum, larry, mark.dickinson, pitrou, rhettinger, serhiy.storchaka, skrah, terry.reedy, vstinner
Date 2013-12-29.09:16:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1388308590.25.0.405554160511.issue19995@psf.upfronthosting.co.za>
In-reply-to
Content
Ran full test suite; some errors came up in test_format from the following test lines:

    testformat("%#x", 1.0, "0x1")
    testformat("%x", float(big), "123456_______________", 6)
    testformat("%o", float(big), "123456__________________________", 6)
    testformat("%x", float(0x42), "42")
    testformat("%o", float(0o42), "42")

Removed as float() is not supposed to be valid input.

Also fixed two memory leaks in unicodeobject from my changes, and a float->oct bug in tarfile.
History
Date User Action Args
2013-12-29 09:16:30ethan.furmansetrecipients: + ethan.furman, gvanrossum, rhettinger, terry.reedy, mark.dickinson, pitrou, vstinner, larry, eric.smith, Arfrever, skrah, serhiy.storchaka
2013-12-29 09:16:30ethan.furmansetmessageid: <1388308590.25.0.405554160511.issue19995@psf.upfronthosting.co.za>
2013-12-29 09:16:30ethan.furmanlinkissue19995 messages
2013-12-29 09:16:30ethan.furmancreate