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 benjamin.peterson, ezio.melotti, lemburg, mark.dickinson, pitrou, python-dev, serhiy.storchaka, skrah, terry.reedy, vstinner
Date 2013-01-25.00:14:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1359072886.52.0.0420218031351.issue16335@psf.upfronthosting.co.za>
In-reply-to
Content
I just ran the 2.7 tests while dealing with another issue, and
I'm getting a memory error or excessive swapping in test_ucn:


The statement

  x = b'\\N{SPACE' + b'x' * int(_testcapi.UINT_MAX + 1) + b'}'

uses over 8GB on my system, so I think that

  minsize=_testcapi.UINT_MAX + 1


is too low.
History
Date User Action Args
2013-01-25 00:14:46skrahsetrecipients: + skrah, lemburg, terry.reedy, mark.dickinson, pitrou, vstinner, benjamin.peterson, ezio.melotti, python-dev, serhiy.storchaka
2013-01-25 00:14:46skrahsetmessageid: <1359072886.52.0.0420218031351.issue16335@psf.upfronthosting.co.za>
2013-01-25 00:14:46skrahlinkissue16335 messages
2013-01-25 00:14:46skrahcreate