[Python-3000-checkins] r58657 - in python/branches/py3k: Doc/library/os.rst Lib/test/test_os.py Lib/test/test_posix.py Misc/NEWS Modules/posixmodule.c

2007-10-25 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Oct 26 01:18:51 2007 New Revision: 58657 Modified: python/branches/py3k/Doc/library/os.rst python/branches/py3k/Lib/test/test_os.py python/branches/py3k/Lib/test/test_posix.py python/branches/py3k/Misc/NEWS python/branches/py3k/Modules/posixmodule.

[Python-3000-checkins] r58658 - in python/branches/py3k/Lib: io.py test/test_file.py

2007-10-25 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Oct 26 01:21:03 2007 New Revision: 58658 Modified: python/branches/py3k/Lib/io.py python/branches/py3k/Lib/test/test_file.py Log: Patch # 1323 by Amaury Forgeot d'Arc. This patch corrects a problem in test_file.py on Windows: f.truncate() seeks to the trunc

[Python-3000-checkins] r58659 - in python/branches/py3k: Lib/test/regrtest.py Objects/unicodeobject.c

2007-10-25 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Oct 26 01:47:33 2007 New Revision: 58659 Modified: python/branches/py3k/Lib/test/regrtest.py python/branches/py3k/Objects/unicodeobject.c Log: Patch # 1302 by Christian Heimes (with some love from me :-). The patch fixes the output for profile and cProfile.

[Python-3000-checkins] r58662 - in python/branches/py3k/Lib: netrc.py subprocess.py test/regrtest.py test/test_mailbox.py test/test_netrc.py test/test_pep277.py test/test_subprocess.py

2007-10-25 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Oct 26 06:29:23 2007 New Revision: 58662 Modified: python/branches/py3k/Lib/netrc.py python/branches/py3k/Lib/subprocess.py python/branches/py3k/Lib/test/regrtest.py python/branches/py3k/Lib/test/test_mailbox.py python/branches/py3k/Lib/test/test_n

[Python-3000-checkins] r58663 - python/branches/py3k/Misc/NEWS

2007-10-25 Thread brett.cannon
Author: brett.cannon Date: Fri Oct 26 07:42:09 2007 New Revision: 58663 Modified: python/branches/py3k/Misc/NEWS Log: Add a missing news entry about how str8's constructor signature now matches the bytes type. Modified: python/branches/py3k/Misc/NEWS ==

[Python-3000-checkins] r58664 - python/branches/py3k/Python/sysmodule.c

2007-10-25 Thread neal.norwitz
Author: neal.norwitz Date: Fri Oct 26 08:05:28 2007 New Revision: 58664 Modified: python/branches/py3k/Python/sysmodule.c Log: Try to fix some of the failing tests on Win64. PY_SSIZE_T_MAX (8 bytes) is larger than what can fit into a long (4 bytes). Hopefully this will fix more problems than

[Python-3000-checkins] r58665 - python/branches/py3k/Objects/bytesobject.c python/branches/py3k/Objects/memoryobject.c

2007-10-25 Thread neal.norwitz
Author: neal.norwitz Date: Fri Oct 26 08:44:10 2007 New Revision: 58665 Modified: python/branches/py3k/Objects/bytesobject.c python/branches/py3k/Objects/memoryobject.c Log: Fix some Py_ssize_t warnings on Win64 that were probably bugs Modified: python/branches/py3k/Objects/bytesobject.c ==