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

2007-06-13 Thread Neal Norwitz
test_threading_local leaked [-10, 10, -91] references, sum=-91 test_urllib2_localnet leaked [3, 3, 3] references, sum=9 ___ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins

[Python-3000-checkins] r55959 - python/branches/p3yk/Modules/_testcapimodule.c

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Jun 13 18:22:41 2007 New Revision: 55959 Modified: python/branches/p3yk/Modules/_testcapimodule.c Log: Fix a compilation warning. Modified: python/branches/p3yk/Modules/_testcapimodule.c ===

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

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Jun 13 18:27:47 2007 New Revision: 55960 Modified: python/branches/py3k-struni/Objects/typeobject.c Log: Discard unused function. Modified: python/branches/py3k-struni/Objects/typeobject.c =

[Python-3000-checkins] r55961 - in python/branches/py3k-struni/Modules: _cursesmodule.c _sqlite/cursor.c

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Jun 13 18:28:25 2007 New Revision: 55961 Modified: python/branches/py3k-struni/Modules/_cursesmodule.c python/branches/py3k-struni/Modules/_sqlite/cursor.c Log: Shut up compiler warnings. Modified: python/branches/py3k-struni/Modules/_cursesmodule.c =

[Python-3000-checkins] r55964 - in python/branches/py3k-struni/Lib: os.py test/test_os.py

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Jun 13 23:51:27 2007 New Revision: 55964 Modified: python/branches/py3k-struni/Lib/os.py python/branches/py3k-struni/Lib/test/test_os.py Log: Following an idea by Ron Adam, make sure keys and values in the environ dict are strings (in particular, not 8-bit

[Python-3000-checkins] r55965 - python/branches/py3k-struni/Lib/os.py

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Jun 13 23:52:41 2007 New Revision: 55965 Modified: python/branches/py3k-struni/Lib/os.py Log: Reduce redundant calls to str() in _Environ class. Modified: python/branches/py3k-struni/Lib/os.py =

[Python-3000-checkins] r55966 - python/branches/py3k-struni/Lib/abc.py

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Jun 14 02:03:37 2007 New Revision: 55966 Added: python/branches/py3k-struni/Lib/abc.py (contents, props changed) Log: Somehow this needed adding. Added: python/branches/py3k-struni/Lib/abc.py

[Python-3000-checkins] r55968 - python/branches/py3k-struni/Python/compile.c

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Jun 14 02:28:01 2007 New Revision: 55968 Modified: python/branches/py3k-struni/Python/compile.c Log: Looks like an oopsie -- I ignored a warning at my peril. Modified: python/branches/py3k-struni/Python/compile.c =

[Python-3000-checkins] r55969 - python/branches/py3k-struni/Modules/cjkcodecs/multibytecodec.c

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Jun 14 02:29:43 2007 New Revision: 55969 Modified: python/branches/py3k-struni/Modules/cjkcodecs/multibytecodec.c Log: Fix another issue likely introduced by the merge. Modified: python/branches/py3k-struni/Modules/cjkcodecs/multibytecodec.c

[Python-3000-checkins] r55970 - python/branches/py3k-struni/Include/bytesobject.h

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Jun 14 02:31:21 2007 New Revision: 55970 Modified: python/branches/py3k-struni/Include/bytesobject.h Log: Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. Modified: python/branches/py3k-struni/Include/bytesobject.h =

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

2007-06-13 Thread Neal Norwitz
test_threading_local leaked [-1, 1, -91] references, sum=-91 test_urllib2_localnet leaked [13, 3, 0] references, sum=16 ___ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins

[Python-3000-checkins] r55971 - python/branches/py3k-struni/Lib/abc.py

2007-06-13 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Jun 14 05:27:55 2007 New Revision: 55971 Modified: python/branches/py3k-struni/Lib/abc.py Log: Modernize the super() call in ABCMeta.__new__() -- I had messed with it when I thought something was broken, and forgotten to restore it before checking in (maybe I