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 ned.deily
Recipients facundobatista, loewis, mark.dickinson, ned.deily, neologix, python-dev, rhettinger, skrah, vstinner
Date 2011-11-28.22:28:06
SpamBayes Score 0.00010363825
Marked as misclassified No
Message-id <1322519287.77.0.1110811278.issue13093@psf.upfronthosting.co.za>
In-reply-to
Content
I am able to reproduce the problem on 2.7 OS X 10.7 64-bit. unicode._encodedecimal is gobbling up memory.  Looks like length is incorrect.

Breakpoint 1, unicode_encodedecimal (self=0x0, args=0x1007ce0d0) at /Users/nad/Projects/PyDev/active/temp/u27-clang/Modules/_testcapimodule.c:1122
1122	    decimal = PyBytes_FromStringAndSize(NULL, decimal_length);
(gdb) p length
$1 = 4294967299
Current language:  auto; currently minimal
(gdb) p unicode
$2 = (Py_UNICODE *) 0x101827ab8
(gdb) p errors
$3 = 0x0
History
Date User Action Args
2011-11-28 22:28:07ned.deilysetrecipients: + ned.deily, loewis, rhettinger, facundobatista, mark.dickinson, vstinner, skrah, neologix, python-dev
2011-11-28 22:28:07ned.deilysetmessageid: <1322519287.77.0.1110811278.issue13093@psf.upfronthosting.co.za>
2011-11-28 22:28:07ned.deilylinkissue13093 messages
2011-11-28 22:28:06ned.deilycreate