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 flox
Recipients eric.smith, flox, jayanth, mark.dickinson, ronaldoussoren
Date 2011-11-15.22:55:07
SpamBayes Score 0.00047963244
Marked as misclassified No
Message-id <1321397708.18.0.334536266422.issue13410@psf.upfronthosting.co.za>
In-reply-to
Content
With Darwin 10.8.0 x86_64, I confirm the behavior described in first message.


$ python2.7 -V
Python 2.7.2
$ python2.7 -i xx.py
22
22
>>> 
TypeError: int() argument must be a string or a number, not 'Foo'
>>> '%d' % y
'22'
>>> '%d' % y
TypeError: int() argument must be a string or a number, not 'Foo'
>>> '%d' % y
'22'
>>> '%d' % y
TypeError: int() argument must be a string or a number, not 'Foo'
>>>
History
Date User Action Args
2011-11-15 22:55:08floxsetrecipients: + flox, ronaldoussoren, mark.dickinson, eric.smith, jayanth
2011-11-15 22:55:08floxsetmessageid: <1321397708.18.0.334536266422.issue13410@psf.upfronthosting.co.za>
2011-11-15 22:55:07floxlinkissue13410 messages
2011-11-15 22:55:07floxcreate