[Python-3000-checkins] r56400 - in python/branches/py3k-struni: Lib/test/test_mmap.py Modules/mmapmodule.c

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Mon Jul 16 21:29:02 2007 New Revision: 56400 Modified: python/branches/py3k-struni/Lib/test/test_mmap.py python/branches/py3k-struni/Modules/mmapmodule.c Log: SF patch# 1752647 by Joe Gregorio. Fixes to make test_mmap.py pass unit tests. Moves the interface fro

[Python-3000-checkins] r56401 - python/branches/py3k-struni/Lib/test/test_mmap.py

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Mon Jul 16 21:42:05 2007 New Revision: 56401 Modified: python/branches/py3k-struni/Lib/test/test_mmap.py Log: Fix a weird use of try/finally to close a file. (There are more places that don't close 'f' at all if an error occurs, but none have a bogus try/finally p

[Python-3000-checkins] r56402 - python/branches/py3k-struni/Lib/uu.py

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Mon Jul 16 21:50:03 2007 New Revision: 56402 Modified: python/branches/py3k-struni/Lib/uu.py Log: Fix test_uu.py by inserting an explicit conversion from bytes to str into uu.py. (This is *not* SF patch 1754339, which I rejected.) Modified: python/branches/py3k

[Python-3000-checkins] r56403 - in python/branches/py3k-struni: Objects/unicodeobject.c Python/bltinmodule.c Python/errors.c

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Mon Jul 16 22:46:27 2007 New Revision: 56403 Modified: python/branches/py3k-struni/Objects/unicodeobject.c python/branches/py3k-struni/Python/bltinmodule.c python/branches/py3k-struni/Python/errors.c Log: Three patches by Amaury Forgeot d'Arc; SF patch# 1754

[Python-3000-checkins] r56404 - python/branches/py3k-struni/Lib/test/test_urllib2.py

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Mon Jul 16 22:51:57 2007 New Revision: 56404 Modified: python/branches/py3k-struni/Lib/test/test_urllib2.py Log: Fix for one particular test (test_file). There are still four errors. (This is not the fix suggested by Hasan Diwan in SF patch# 1753889.) Modified:

[Python-3000-checkins] r56405 - in python/branches/py3k-struni/Lib: distutils/command/bdist_msi.py encodings/punycode.py getopt.py lib-tk/Tix.py msilib/__init__.py test/test_csv.py

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Tue Jul 17 01:10:57 2007 New Revision: 56405 Modified: python/branches/py3k-struni/Lib/distutils/command/bdist_msi.py python/branches/py3k-struni/Lib/encodings/punycode.py python/branches/py3k-struni/Lib/getopt.py python/branches/py3k-struni/Lib/lib-tk/Ti

[Python-3000-checkins] r56406 - in python/branches/py3k-struni: Lib/cProfile.py Modules/_lsprof.c

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Tue Jul 17 01:36:05 2007 New Revision: 56406 Modified: python/branches/py3k-struni/Lib/cProfile.py python/branches/py3k-struni/Modules/_lsprof.c Log: Fix for cProfile. SF patch# 1755176 by Amaury Forgeot d'Arc. Modified: python/branches/py3k-struni/Lib/cProfi

[Python-3000-checkins] r56407 - python/branches/py3k-struni/Lib/pickletools.py

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Tue Jul 17 02:19:46 2007 New Revision: 56407 Modified: python/branches/py3k-struni/Lib/pickletools.py Log: Make test_pickletools.py pass. Modified: python/branches/py3k-struni/Lib/pickletools.py ===

[Python-3000-checkins] r56408 - python/branches/py3k-struni/Lib/pydoc.py

2007-07-16 Thread collin.winter
Author: collin.winter Date: Tue Jul 17 02:27:30 2007 New Revision: 56408 Modified: python/branches/py3k-struni/Lib/pydoc.py Log: Fix a bug from the map->itertools.imap conversion. Modified: python/branches/py3k-struni/Lib/pydoc.py ===

[Python-3000-checkins] r56409 - python/branches/py3k-struni/Lib/test/test_exceptions.py

2007-07-16 Thread guido.van.rossum
Author: guido.van.rossum Date: Tue Jul 17 02:34:25 2007 New Revision: 56409 Modified: python/branches/py3k-struni/Lib/test/test_exceptions.py Log: Make the test of chr() overflow pass. (Sigh. There are so many redundant tests.) Modified: python/branches/py3k-struni/Lib/test/test_exceptions.py

[Python-3000-checkins] r56410 - python/branches/py3k-struni/Lib/distutils/core.py

2007-07-16 Thread collin.winter
Author: collin.winter Date: Tue Jul 17 02:38:21 2007 New Revision: 56410 Modified: python/branches/py3k-struni/Lib/distutils/core.py Log: Fix a bug in distutils.core's error handling. Modified: python/branches/py3k-struni/Lib/distutils/core.py ==

[Python-3000-checkins] r56411 - python/branches/py3k-struni/Lib/distutils/filelist.py python/branches/py3k-struni/Lib/distutils/version.py

2007-07-16 Thread collin.winter
Author: collin.winter Date: Tue Jul 17 02:39:32 2007 New Revision: 56411 Modified: python/branches/py3k-struni/Lib/distutils/filelist.py python/branches/py3k-struni/Lib/distutils/version.py Log: Fix two bugs from the map->itertools.imap switch. Modified: python/branches/py3k-struni/Lib/dist

Re: [Python-3000-checkins] r56409 - python/branches/py3k-struni/Lib/test/test_exceptions.py

2007-07-16 Thread Brett Cannon
On 7/16/07, guido.van.rossum wrote: > Author: guido.van.rossum > Date: Tue Jul 17 02:34:25 2007 > New Revision: 56409 > > Modified: >python/branches/py3k-struni/Lib/test/test_exceptions.py > Log: > Make the test of chr() overflow pass. > (Sigh. There are so many redundant tests.) > Yep. But

Re: [Python-3000-checkins] r56409 - python/branches/py3k-struni/Lib/test/test_exceptions.py

2007-07-16 Thread Guido van Rossum
On 7/16/07, Brett Cannon <[EMAIL PROTECTED]> wrote: > On 7/16/07, guido.van.rossum wrote: > > Author: guido.van.rossum > > Date: Tue Jul 17 02:34:25 2007 > > New Revision: 56409 > > > > Modified: > >python/branches/py3k-struni/Lib/test/test_exceptions.py > > Log: > > Make the test of chr() ove