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 Brian.Jones
Recipients Brian.Jones, benjamin.peterson
Date 2011-07-10.17:45:05
SpamBayes Score 2.4533238e-09
Marked as misclassified No
Message-id <1310319906.95.0.977084793893.issue12527@psf.upfronthosting.co.za>
In-reply-to
Content
No, I'm not. I'm sorry for not including this output initially. Here's what I get (and I've added a sys.version_info line just to be double sure the right executable is being invoked at runtime): 

sys.version_info(major=3, minor=3, micro=0, releaselevel='alpha', serial=0)
.FFE
======================================================================
ERROR: test_intfail4 (__main__.TestInt)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./test_int.py", line 21, in test_intfail4
    int('ABC')
ValueError: invalid literal for int() with base 10: 'ABC'

======================================================================
FAIL: test_intfail2 (__main__.TestInt)
----------------------------------------------------------------------
ValueError: invalid literal for int() with base 10: 'ABC'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "./test_int.py", line 13, in test_intfail2
    int('ABC')
AssertionError: "lambda" does not match "invalid literal for int() with base 10: 'ABC'"

======================================================================
FAIL: test_intfail3 (__main__.TestInt)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./test_int.py", line 17, in test_intfail3
    int(1)
AssertionError: ValueError not raised

----------------------------------------------------------------------
Ran 4 tests in 0.001s

FAILED (failures=2, errors=1)
History
Date User Action Args
2011-07-10 17:45:07Brian.Jonessetrecipients: + Brian.Jones, benjamin.peterson
2011-07-10 17:45:06Brian.Jonessetmessageid: <1310319906.95.0.977084793893.issue12527@psf.upfronthosting.co.za>
2011-07-10 17:45:06Brian.Joneslinkissue12527 messages
2011-07-10 17:45:06Brian.Jonescreate