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 petraszd
Recipients ajaksu2, georg.brandl, petraszd, phr
Date 2010-07-24.10:51:14
SpamBayes Score 0.013146069
Marked as misclassified No
Message-id <1279968677.72.0.140613828873.issue1560032@psf.upfronthosting.co.za>
In-reply-to
Content
I have written a patch thats makes these strange error messages go away.
What actually I have done was something like this:

>>> randint = _inst.randint

Was replaced with:

>>> def randint(a, b):
        return _inst.randint(a, b)

But I do not think it is worth to add additional stack frame just for error messages be a little more better.
History
Date User Action Args
2010-07-24 10:51:17petraszdsetrecipients: + petraszd, georg.brandl, phr, ajaksu2
2010-07-24 10:51:17petraszdsetmessageid: <1279968677.72.0.140613828873.issue1560032@psf.upfronthosting.co.za>
2010-07-24 10:51:16petraszdlinkissue1560032 messages
2010-07-24 10:51:16petraszdcreate