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 Ramin Farajpour Cami
Recipients Ramin Farajpour Cami, paul.moore, steve.dower, tim.golden, zach.ware
Date 2021-02-19.06:45:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613717144.23.0.365304992975.issue43260@roundup.psfhosted.org>
In-reply-to
Content
Python 3.9.1 (tags/v3.9.1:1e5d33e, Dec  7 2020, 16:33:24) [MSC v.1928 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print("a"*1000000000)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
MemoryError
>>> print("1")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
MemoryError
>>>
History
Date User Action Args
2021-02-19 06:45:44Ramin Farajpour Camisetrecipients: + Ramin Farajpour Cami, paul.moore, tim.golden, zach.ware, steve.dower
2021-02-19 06:45:44Ramin Farajpour Camisetmessageid: <1613717144.23.0.365304992975.issue43260@roundup.psfhosted.org>
2021-02-19 06:45:44Ramin Farajpour Camilinkissue43260 messages
2021-02-19 06:45:43Ramin Farajpour Camicreate