[issue9424] deprecate unittest.TestCase.assertEquals

2010-08-06 Thread Ezio Melotti
Ezio Melotti added the comment: If you are talking about assertNotEquals, assertAlmostEquals, and assertAlmostNotEquals they should go as well (I didn't even know they existed). assert_ is probably used more often, but I'd deprecate it too. Note that in the 2.7 and 3.2 doc assert_ is already m

[issue9519] IDLE cannot do example 4.1 in tutorial (if statements)

2010-08-06 Thread Robert Buckley
Robert Buckley added the comment: I can say that more clearly. The backspace feature for ending a block does not work in IDLE when attempting to end a block that had no indentation. Example: >>> if a < 4: a = 0 # Assume this is end of the 'if' block; that you want to #

[issue7994] object.__format__ should reject format strings

2010-08-06 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue9198] Should repr() print unicode characters outside the BMP?

2010-08-06 Thread Ezio Melotti
Ezio Melotti added the comment: Assigning to myself so that I'll remember to finish and commit the patch. -- assignee: -> ezio.melotti ___ Python tracker ___ ___

[issue9519] IDLE cannot do example 4.1 in tutorial (if statements)

2010-08-06 Thread R. David Murray
R. David Murray added the comment: Just like in the interactive interpreter, when you get to the end of a suite, you have to hit enter again to end the suite. This is indicated in the example by the '...' with no other text on the line (i.e.: at that ... you press enter). In Idle it is the

[issue9315] The trace module lacks unit tests

2010-08-06 Thread Eli Bendersky
Eli Bendersky added the comment: [attaching a new patch version] 1. Are you refering to Lib/test/tracedmodules/__init__.py? I did add it - it appears in the patchfile. What do you mean? 2. Fixed 3. Fixed 4. I'm not sure. Tracing of the current file is also a common use case, and I really o

[issue9323] trace.py bug with the main file being traced

2010-08-06 Thread Eli Bendersky
Eli Bendersky added the comment: It appears to affect 2.7 as well (probably because of a back-port from py3k to 27-maint in revision 83421). -- versions: +Python 2.7 ___ Python tracker

[issue9323] trace.py bug with the main file being traced

2010-08-06 Thread Eli Bendersky
Eli Bendersky added the comment: Looking at Lib/test/regrtest.py: if __name__ == '__main__': # Simplification for findtestdir(). assert __file__ == os.path.abspath(sys.argv[0]) I'm not sure regrtest.py is prepared to be run from trace at all. Note that this error also happens wh

<    1   2