[Python-3000-checkins] r45422 - python/branches/p3yk/Lib/test/test_descrtut.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:03:16 2006 New Revision: 45422 Modified: python/branches/p3yk/Lib/test/test_descrtut.py Log: - Fix doctest results to account for classes being new-style, and thus printing differently. - Fix doctest for classic-class behaviour, make it test new-

[Python-3000-checkins] r45423 - python/branches/p3yk/Lib/test/test_descr.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:04:57 2006 New Revision: 45423 Modified: python/branches/p3yk/Lib/test/test_descr.py Log: Remove tests for classic-class and mixed-classic-class/new-style behaviour. (New-style class behaviour was already thoroughly tested) Modified: python/branche

[Python-3000-checkins] r45424 - python/branches/p3yk/Lib/test/test_itertools.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:07:20 2006 New Revision: 45424 Modified: python/branches/p3yk/Lib/test/test_itertools.py Log: Fix tests that were trying to make iteration blow up, on broken iterators. Since the broken iterators are now new-style classes, iter() was able to do the va

[Python-3000-checkins] r45425 - in python/branches/p3yk/Lib/test: output/test_augassign test_augassign.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:10:43 2006 New Revision: 45425 Modified: python/branches/p3yk/Lib/test/output/test_augassign python/branches/p3yk/Lib/test/test_augassign.py Log: Fix the superficial augmented-assignment tests to deal with true division. Add (equally superficial) >

[Python-3000-checkins] r45426 - python/branches/p3yk/Lib/test/test_bisect.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:12:14 2006 New Revision: 45426 Modified: python/branches/p3yk/Lib/test/test_bisect.py Log: Fix test_bisect in the same way as test_itertools: iter() blows up a lot sooner for new-style broken-iterators, expect it to. Modified: python/branches/p3yk/

[Python-3000-checkins] r45427 - python/branches/p3yk/Lib/test/test_inspect.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:13:19 2006 New Revision: 45427 Modified: python/branches/p3yk/Lib/test/test_inspect.py Log: - Remove tests for classic class behaviour - Expect a new-style class tree in the getclasstree test. Modified: python/branches/p3yk/Lib/test/test_inspect.

[Python-3000-checkins] r45428 - python/branches/p3yk/Lib/test/test_getargs2.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:15:11 2006 New Revision: 45428 Modified: python/branches/p3yk/Lib/test/test_getargs2.py Log: Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily) convert float arguments to integer-taking format characters, so fix the test to expe

[Python-3000-checkins] r45429 - python/branches/p3yk/Lib/test/test_enumerate.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:16:16 2006 New Revision: 45429 Modified: python/branches/p3yk/Lib/test/test_enumerate.py Log: Adjust test_enumerate to accomodate for iter() blowing up sooner than expected, when dealing with new-style broken-iterators. Modified: python/branches/p3

[Python-3000-checkins] r45430 - python/branches/p3yk/Lib/test/test_class.py

2006-04-15 Thread thomas.wouters
Author: thomas.wouters Date: Sat Apr 15 11:19:16 2006 New Revision: 45430 Modified: python/branches/p3yk/Lib/test/test_class.py Log: Make test_class work (but still fail) even though class.__dict__ is now a 'dictproxy' (which is a read-only non-dict mapping type that can't be passed to exec.)

[Python-3000-checkins] r45431 - python/branches/p3yk/Misc/NEWS

2006-04-15 Thread brett.cannon
Author: brett.cannon Date: Sat Apr 15 11:35:38 2006 New Revision: 45431 Modified: python/branches/p3yk/Misc/NEWS Log: Mention how __coerce__ has been removed. Modified: python/branches/p3yk/Misc/NEWS == --- python/bra