[Python-3000-checkins] r56890 - python/branches/py3k/Lib/bsddb/__init__.py

2007-08-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Fri Aug 10 09:47:16 2007 New Revision: 56890 Modified: python/branches/py3k/Lib/bsddb/__init__.py Log: Wrap set_location. Modified: python/branches/py3k/Lib/bsddb/__init__.py == --- pytho

Re: [Python-3000-checkins] r56896 - python/branches/py3k/Lib/gzip.py

2007-08-10 Thread Guido van Rossum
Style comment: it would have been better not to reuse the fname variable for the encoded version; this may surprise the reader. On 8/10/07, lars.gustaebel wrote: > Author: lars.gustaebel > Date: Fri Aug 10 14:02:32 2007 > New Revision: 56896 > > Modified: >python/branches/py3k/Lib/gzip.py > L

[Python-3000-checkins] r56901 - python/branches/py3k/Lib/py_compile.py

2007-08-10 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 10 19:36:34 2007 New Revision: 56901 Modified: python/branches/py3k/Lib/py_compile.py Log: A small tweak to avoid calling traceback.format_exception_only() with a bogus (tuple) value. This should fix the "make install" issue Neal reported. Modified: pyt

[Python-3000-checkins] r56905 - python/branches/py3k/Lib/BaseHTTPServer.py

2007-08-10 Thread jeremy.hylton
Author: jeremy.hylton Date: Fri Aug 10 20:49:32 2007 New Revision: 56905 Modified: python/branches/py3k/Lib/BaseHTTPServer.py Log: Allow rfc822 to process headers from an incoming HTTP request. Modified: python/branches/py3k/Lib/BaseHTTPServer.py ==

[Python-3000-checkins] r56904 - python/branches/py3k/Lib/httplib.py

2007-08-10 Thread jeremy.hylton
Author: jeremy.hylton Date: Fri Aug 10 20:49:01 2007 New Revision: 56904 Modified: python/branches/py3k/Lib/httplib.py Log: Style Modified: python/branches/py3k/Lib/httplib.py == --- python/branches/py3k/Lib/httplib.p

Re: [Python-3000-checkins] r56905 - python/branches/py3k/Lib/BaseHTTPServer.py

2007-08-10 Thread Jeremy Hylton
On 8/10/07, Guido van Rossum <[EMAIL PROTECTED]> wrote: > Yay! This fixes test_urllib2_localnet. We're now down to test_bsddb3 > and the three email package tests, plus various things not behaving > yet under torture (regrtest.py -R4:3:). It broke a couple of other tests :-(. Looking at test_wsgi

[Python-3000-checkins] r56906 - python/branches/py3k/Lib/test/test_wsgiref.py

2007-08-10 Thread jeremy.hylton
Author: jeremy.hylton Date: Fri Aug 10 21:13:33 2007 New Revision: 56906 Modified: python/branches/py3k/Lib/test/test_wsgiref.py Log: Make sure the mock object passed to finish_request() is buffered. Modified: python/branches/py3k/Lib/test/test_wsgiref.py =

[Python-3000-checkins] r56907 - python/branches/py3k/Modules/datetimemodule.c

2007-08-10 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 10 21:26:04 2007 New Revision: 56907 Modified: python/branches/py3k/Modules/datetimemodule.c Log: Fix refcount bug in make_Zreplacement(). Modified: python/branches/py3k/Modules/datetimemodule.c ===

Re: [Python-3000-checkins] r56905 - python/branches/py3k/Lib/BaseHTTPServer.py

2007-08-10 Thread Guido van Rossum
Yay! This fixes test_urllib2_localnet. We're now down to test_bsddb3 and the three email package tests, plus various things not behaving yet under torture (regrtest.py -R4:3:). On 8/10/07, jeremy.hylton wrote: > Author: jeremy.hylton > Date: Fri Aug 10 20:49:32 2007 > New Revision: 56905 > > Modi

Re: [Python-3000-checkins] r56902 - in python/branches/py3k: Lib/sqlite3/test/factory.py Lib/sqlite3/test/types.py Lib/sqlite3/test/userfunctions.py Modules/_sqlite/connection.c Modules/_sqlite/cursor

2007-08-10 Thread Guido van Rossum
Thanks! I ran into a segfault when running this, but it was easily tracked down and fixed; see r56903. On 8/10/07, gerhard.haering wrote: > Author: gerhard.haering > Date: Fri Aug 10 20:15:11 2007 > New Revision: 56902 > > Modified: >python/branches/py3k/Lib/sqlite3/test/factory.py >pytho

[Python-3000-checkins] r56903 - python/branches/py3k/Modules/_sqlite/connection.c

2007-08-10 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 10 20:35:04 2007 New Revision: 56903 Modified: python/branches/py3k/Modules/_sqlite/connection.c Log: Fix a bit of code that wasn't converted properly, causing a segfault. Modified: python/branches/py3k/Modules/_sqlite/connection.c ==

[Python-3000-checkins] r56896 - python/branches/py3k/Lib/gzip.py

2007-08-10 Thread lars.gustaebel
Author: lars.gustaebel Date: Fri Aug 10 14:02:32 2007 New Revision: 56896 Modified: python/branches/py3k/Lib/gzip.py Log: RFC 1952 requires the FNAME field to be Latin-1. Do not include filenames that cannot be represented that way. Modified: python/branches/py3k/Lib/gzip.py =

[Python-3000-checkins] r56892 - in python/branches/py3k/Lib: bsddb/dbshelve.py bsddb/dbtables.py bsddb/test/test_dbtables.py test/test_bsddb3.py

2007-08-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Fri Aug 10 10:36:56 2007 New Revision: 56892 Modified: python/branches/py3k/Lib/bsddb/dbshelve.py python/branches/py3k/Lib/bsddb/dbtables.py python/branches/py3k/Lib/bsddb/test/test_dbtables.py python/branches/py3k/Lib/test/test_bsddb3.py Log: Fix dbshelve

[Python-3000-checkins] r56894 - python/branches/py3k/Objects/unicodeobject.c

2007-08-10 Thread walter.doerwald
Author: walter.doerwald Date: Fri Aug 10 12:11:43 2007 New Revision: 56894 Modified: python/branches/py3k/Objects/unicodeobject.c Log: Fix refleak: decref inputobj after extracting the relavant info (the object won't go away, as the exception object holds another reference). Modified: python/

[Python-3000-checkins] r56910 - python/branches/py3k/Lib/test/test_telnetlib.py

2007-08-10 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 10 23:28:41 2007 New Revision: 56910 Modified: python/branches/py3k/Lib/test/test_telnetlib.py Log: Use an event variable to wait for the server to be ready, rather than sleep(0.1). Modified: python/branches/py3k/Lib/test/test_telnetlib.py =

[Python-3000-checkins] r56908 - python/branches/py3k/Lib/idlelib/PyShell.py

2007-08-10 Thread kurt.kaiser
Author: kurt.kaiser Date: Fri Aug 10 21:45:35 2007 New Revision: 56908 Modified: python/branches/py3k/Lib/idlelib/PyShell.py Log: Remove the None tag from tagdefs dict for now, appears inoperative and causes a _tkinter error in py3k. Modified: python/branches/py3k/Lib/idlelib/PyShell.py =

[Python-3000-checkins] r56911 - python/branches/py3k/Lib/idlelib/PyShell.py

2007-08-10 Thread kurt.kaiser
Author: kurt.kaiser Date: Sat Aug 11 06:20:51 2007 New Revision: 56911 Modified: python/branches/py3k/Lib/idlelib/PyShell.py Log: Fix what appears to be a very old bug. Tkinter in struni is more intolerant of non-existant text widget 'marks', it seems. Modified: python/branches/py3k/Lib/idle

[Python-3000-checkins] r56913 - python/branches/py3k/Modules/parsermodule.c

2007-08-10 Thread neal.norwitz
Author: neal.norwitz Date: Sat Aug 11 06:58:43 2007 New Revision: 56913 Modified: python/branches/py3k/Modules/parsermodule.c Log: Fix refleaks Modified: python/branches/py3k/Modules/parsermodule.c == --- python/branch

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

2007-08-10 Thread neal.norwitz
Author: neal.norwitz Date: Sat Aug 11 06:58:26 2007 New Revision: 56912 Modified: python/branches/py3k/Python/codecs.c Log: Handle error Modified: python/branches/py3k/Python/codecs.c == --- python/branches/py3k/Python

[Python-3000-checkins] r56914 - in python/branches/py3k/Lib: bsddb/dbtables.py bsddb/test/test_dbtables.py test/test_bsddb3.py

2007-08-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Sat Aug 11 08:13:20 2007 New Revision: 56914 Modified: python/branches/py3k/Lib/bsddb/dbtables.py python/branches/py3k/Lib/bsddb/test/test_dbtables.py python/branches/py3k/Lib/test/test_bsddb3.py Log: Fix test_bsddb3. Modified: python/branches/py3k/Lib/bsdd

[Python-3000-checkins] r56916 - in python/branches/py3k/Lib: shelve.py test/test_shelve.py

2007-08-10 Thread martin.v.loewis
Author: martin.v.loewis Date: Sat Aug 11 08:57:14 2007 New Revision: 56916 Modified: python/branches/py3k/Lib/shelve.py python/branches/py3k/Lib/test/test_shelve.py Log: Change shelve to require a bytes-oriented dict as the underlying storage, and yet provide string keys. Modified: python/