Message147722
| 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'
>>> |
|