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 skrah
Recipients ezio.melotti, josh.r, methane, python-dev, serhiy.storchaka, skrah, vstinner, xiang.zhang
Date 2017-01-07.23:30:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483831854.71.0.636285305327.issue28701@psf.upfronthosting.co.za>
In-reply-to
Content
For the record: This is all that happened in decimal if a) you
pass a legacy string and b) force _PyUnicode_Ready() to throw
a MemoryError:

>>> from decimal import *
>>> import _testcapi
>>> context = Context()
>>> traps = _testcapi.unicode_legacy_string('traps')
>>> getattr(context, traps)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError



Both a) and b) are not trivial to accomplish at all and the result
is completely benign.
History
Date User Action Args
2017-01-07 23:30:54skrahsetrecipients: + skrah, vstinner, ezio.melotti, methane, python-dev, serhiy.storchaka, josh.r, xiang.zhang
2017-01-07 23:30:54skrahsetmessageid: <1483831854.71.0.636285305327.issue28701@psf.upfronthosting.co.za>
2017-01-07 23:30:54skrahlinkissue28701 messages
2017-01-07 23:30:54skrahcreate