Re: [Python-3000-checkins] r54433 - in python/branches/p3yk: Doc/api/concrete.tex Doc/api/refcounts.dat Include/floatobject.h Misc/NEWS Objects/abstract.c Objects/floatobject.c

2007-03-21 Thread Thomas Wouters
On 3/18/07, georg.brandl wrote: Author: georg.brandl Date: Sun Mar 18 19:35:15 2007 New Revision: 54433 Modified: python/branches/p3yk/Doc/api/concrete.tex python/branches/p3yk/Doc/api/refcounts.dat python/branches/p3yk/Include/floatobject.h python/branches/p3yk/Misc/NEWS python

Re: [Python-3000-checkins] r54433 - in python/branches/p3yk: Doc/api/concrete.tex Doc/api/refcounts.dat Include/floatobject.h Misc/NEWS Objects/abstract.c Objects/floatobject.c

2007-03-21 Thread Georg Brandl
Thomas Wouters schrieb: > > > On 3/18/07, *georg.brandl* > wrote: > > Author: georg.brandl > Date: Sun Mar 18 19:35:15 2007 > New Revision: 54433 > > Modified: >python/branches/p3yk/Doc/api/concrete.tex >python/branches/p3

[Python-3000-checkins] r54493 - in python/branches/p3yk: Lib/test/test_bool.py Lib/test/test_operator.py Misc/NEWS Modules/operator.c

2007-03-21 Thread collin.winter
Author: collin.winter Date: Wed Mar 21 21:10:51 2007 New Revision: 54493 Modified: python/branches/p3yk/Lib/test/test_bool.py python/branches/p3yk/Lib/test/test_operator.py python/branches/p3yk/Misc/NEWS python/branches/p3yk/Modules/operator.c Log: Remove isCallable() and sequenceInclu

[Python-3000-checkins] r54502 - python/branches/p3yk/Python/compile.c

2007-03-21 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Mar 21 22:26:58 2007 New Revision: 54502 Modified: python/branches/p3yk/Python/compile.c Log: Fix refleak in compiler. (A symbol table entry was leaked every time a class was compiled.) Modified: python/branches/p3yk/Python/compile.c

[Python-3000-checkins] r54510 - in python/branches/p3yk/Lib: ConfigParser.py test/test_file.py

2007-03-21 Thread brett.cannon
Author: brett.cannon Date: Wed Mar 21 23:26:20 2007 New Revision: 54510 Modified: python/branches/p3yk/Lib/ConfigParser.py python/branches/p3yk/Lib/test/test_file.py Log: When removing indexing/slicing on exceptions some places were changed inappropriately from ``e[0]`` to ``e.message`` inst