Changes between Version 1 and Version 7 of Ticket #16088
- Timestamp:
- 03/15/18 09:06:45 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16088
-
Property
Milestone
changed from
sage-6.2
tosage-8.0
-
Property
Component
changed from
distribution
topython3
-
Property
Summary
changed from
Python 3 preparation: Py2 vs. Py3 different tracebacks in doctest
topy: different exception messages in doctest
-
Property
Milestone
changed from
-
Ticket #16088 – Description
v1 v7 1 Tracebacks can look different. For example in 2 [[br]] 3 Py2 1 Exceptions can look different. For example: 2 3 '''Python 2''': 4 4 {{{ 5 5 >>> sys.version … … 11 11 >>> 12 12 }}} 13 while in Py3 13 14 '''Python 3''': 14 15 {{{ 15 16 >>> sys.version … … 21 22 >>> 22 23 }}} 23 The number of effected modules and a suitable approach have to be determined.24 24 25 25 This ticket is tracked as a dependency of meta-ticket ticket:16052.