Issue1087

classification
Title: assert error message at end of Python script differs from Py2.5
Type: Severity: minor
Components: Core Versions: 2.5alpha1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: baoilleach, fwierzbicki, pjenvey
Priority: Keywords:

Created on 2008-07-30.15:07:02 by baoilleach, last changed 2008-07-31.20:07:09 by pjenvey.

Files
File name Uploaded Description Edit Remove
test_second.py baoilleach, 2008-07-30.15:07:01 Python script exhibiting the problem
Messages
msg3367 (view) Author: Noel O'Boyle (baoilleach) Date: 2008-07-30.15:07:01
For the attached test_second.py on Windows, Python2.5 gives:

Traceback (most recent call last):
  File "test_second.py", line 1, in <module>
    assert False
AssertionError

Jython2.5a gives:
Traceback (most recent call last):
  File "test_second.py", line 1, in <module>
    assert FalseAssertionError
msg3377 (view) Author: Philip Jenvey (pjenvey) Date: 2008-07-31.20:07:09
fixed in r5030, thanks!
History
Date User Action Args
2008-07-31 20:07:09pjenveysetstatus: open -> closed
nosy: + pjenvey
resolution: fixed
messages: + msg3377
2008-07-31 15:24:46fwierzbickisetnosy: + fwierzbicki
2008-07-30 15:07:02baoilleachcreate