[Python-3000-checkins] Python Regression Test Failures refleak (1)

2007-06-10 Thread Neal Norwitz
test_collections leaked [46, 46, 46] references, sum=138 ___ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins

[Python-3000-checkins] r55852 - python/branches/p3yk/Lib/test/test_collections.py

2007-06-10 Thread guido.van.rossum
Author: guido.van.rossum Date: Sun Jun 10 17:29:51 2007 New Revision: 55852 Modified: python/branches/p3yk/Lib/test/test_collections.py Log: Add some more examples, e.g. generators and dict views. Modified: python/branches/p3yk/Lib/test/test_collections.py

[Python-3000-checkins] r55853 - python/branches/p3yk/Lib/test/test_collections.py

2007-06-10 Thread guido.van.rossum
Author: guido.van.rossum Date: Sun Jun 10 17:31:59 2007 New Revision: 55853 Modified: python/branches/p3yk/Lib/test/test_collections.py Log: keys() and items() *are* containers -- just values() isn't. Modified: python/branches/p3yk/Lib/test/test_collections.py

Re: [Python-3000-checkins] r55850 - in python/branches/py3k-struni: Include/ceval.h Include/pystate.h Include/stringobject.h Include/unicodeobject.h Lib/test/test_frozen.py Lib/test/test_new.py Lib/te

2007-06-10 Thread Neal Norwitz
On 6/10/07, martin.v.loewis wrote: > Author: martin.v.loewis > Date: Sun Jun 10 11:51:05 2007 > New Revision: 55850 > > Modified: python/branches/py3k-struni/Modules/unicodedata.c > == > --- python/branches/py3k-struni/Mod

[Python-3000-checkins] r55861 - python/branches/py3k-struni/Objects/classobject.c

2007-06-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Sun Jun 10 23:09:40 2007 New Revision: 55861 Modified: python/branches/py3k-struni/Objects/classobject.c Log: Fix getclassname. Fixes test_descrtut. Modified: python/branches/py3k-struni/Objects/classobject.c ==

[Python-3000-checkins] r55862 - python/branches/py3k-struni/Objects/typeobject.c

2007-06-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Sun Jun 10 23:13:34 2007 New Revision: 55862 Modified: python/branches/py3k-struni/Objects/typeobject.c Log: Expect unicode in class_name. Modified: python/branches/py3k-struni/Objects/typeobject.c =

[Python-3000-checkins] r55865 - in python/branches/p3yk/Tools: i18n/msgfmt.py pybench/Arithmetic.py pybench/CommandLine.py pybench/Numbers.py pybench/systimes.py scripts/classfix.py scripts/fixcid.py

2007-06-10 Thread georg.brandl
Author: georg.brandl Date: Mon Jun 11 00:31:37 2007 New Revision: 55865 Modified: python/branches/p3yk/Tools/i18n/msgfmt.py python/branches/p3yk/Tools/pybench/Arithmetic.py python/branches/p3yk/Tools/pybench/CommandLine.py python/branches/p3yk/Tools/pybench/Numbers.py python/branche

[Python-3000-checkins] r55867 - python/branches/p3yk/Doc/ref/ref2.tex

2007-06-10 Thread georg.brandl
Author: georg.brandl Date: Mon Jun 11 00:37:55 2007 New Revision: 55867 Modified: python/branches/p3yk/Doc/ref/ref2.tex Log: Some docs for PEP 3127. Modified: python/branches/p3yk/Doc/ref/ref2.tex == --- python/branch

[Python-3000-checkins] r55866 - python/branches/p3yk/Parser/tokenizer.c

2007-06-10 Thread georg.brandl
Author: georg.brandl Date: Mon Jun 11 00:37:43 2007 New Revision: 55866 Modified: python/branches/p3yk/Parser/tokenizer.c Log: Tokenizer changes for PEP 3127. Modified: python/branches/p3yk/Parser/tokenizer.c == --- p

Re: [Python-3000-checkins] r55865 - in python/branches/p3yk/Tools: i18n/msgfmt.py pybench/Arithmetic.py pybench/CommandLine.py pybench/Numbers.py pybench/systimes.py scripts/classfix.py scripts/fixcid

2007-06-10 Thread Neal Norwitz
On 6/10/07, georg.brandl wrote: > Author: georg.brandl > Date: Mon Jun 11 00:31:37 2007 > New Revision: 55865 > > Log: > Some octal literal fixes in Tools. > > > Modified: python/branches/p3yk/Tools/pybench/Numbers.py > ==

[Python-3000-checkins] r55868 - python/branches/p3yk/Objects/intobject.c

2007-06-10 Thread georg.brandl
Author: georg.brandl Date: Mon Jun 11 00:44:39 2007 New Revision: 55868 Modified: python/branches/p3yk/Objects/intobject.c Log: Missed a place in intobject.c. Is that used anymore anyway? Modified: python/branches/p3yk/Objects/intobject.c ==

Re: [Python-3000-checkins] r55868 - python/branches/p3yk/Objects/intobject.c

2007-06-10 Thread Guido van Rossum
No, intobject.c has #if 0 at the top and a matching #endif at the bottom. I don't know what it hasn't been removed -- Martin? On 6/10/07, georg.brandl wrote: > Author: georg.brandl > Date: Mon Jun 11 00:44:39 2007 > New Revision: 55868 > > Modified: >python/branches/p3yk/Objects/intobject.c >

[Python-3000-checkins] Python Regression Test Failures refleak (1)

2007-06-10 Thread Neal Norwitz
test_collections leaked [46, 46, 46] references, sum=138 ___ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins

[Python-3000-checkins] r55876 - python/branches/py3k-struni/Python/codecs.c

2007-06-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Mon Jun 11 06:19:13 2007 New Revision: 55876 Modified: python/branches/py3k-struni/Python/codecs.c Log: Short-cut lookup of utf-8 codec, to make import work on OSX. Modified: python/branches/py3k-struni/Python/codecs.c

[Python-3000-checkins] r55880 - python/branches/p3yk/Lib/test/regrtest.py

2007-06-10 Thread neal.norwitz
Author: neal.norwitz Date: Mon Jun 11 07:07:36 2007 New Revision: 55880 Modified: python/branches/p3yk/Lib/test/regrtest.py Log: Fix the refleak counter on test_collections. The ABC metaclass creates a registry which must be cleared on each run. Otherwise, there *seem* to be refleaks when the

[Python-3000-checkins] r55884 - python/branches/p3yk/Misc/build.sh

2007-06-10 Thread neal.norwitz
Author: neal.norwitz Date: Mon Jun 11 07:46:33 2007 New Revision: 55884 Modified: python/branches/p3yk/Misc/build.sh Log: These tests have been removed, so they are no longer needed here Modified: python/branches/p3yk/Misc/build.sh ==