[Python-3000-checkins] r57315 - in python/branches/py3k: Lib/bsddb/test/test_dbtables.py Lib/bsddb/test/test_lock.py Lib/bsddb/test/test_queue.py Lib/bsddb/test/test_recno.py Modules/_bsddb.c

2007-08-23 Thread gregory.p.smith
Author: gregory.p.smith Date: Thu Aug 23 09:32:27 2007 New Revision: 57315 Modified: python/branches/py3k/Lib/bsddb/test/test_dbtables.py python/branches/py3k/Lib/bsddb/test/test_lock.py python/branches/py3k/Lib/bsddb/test/test_queue.py python/branches/py3k/Lib/bsddb/test/test_recno.py

Re: [Python-3000-checkins] r57313 - python/branches/py3k/Lib/idlelib/PyShell.py

2007-08-23 Thread Guido van Rossum
We should fix that obviously. On 8/22/07, kurt.kaiser wrote: > Author: kurt.kaiser > Date: Thu Aug 23 08:17:40 2007 > New Revision: 57313 > > Modified: >python/branches/py3k/Lib/idlelib/PyShell.py > Log: > os.getcwd() is returning str8; sys.path items are str. > > > Modified: python/branches/

[Python-3000-checkins] r57325 - python/branches/py3k/Modules/binascii.c

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Thu Aug 23 19:55:33 2007 New Revision: 57325 Modified: python/branches/py3k/Modules/binascii.c Log: Use a newer API for creating the module so we don't have to create the docstring manually. Saves code and a call to PyString_FromString. Modified: python/branches/py

[Python-3000-checkins] r57329 - python/branches/py3k/Modules/_localemodule.c

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Thu Aug 23 20:08:11 2007 New Revision: 57329 Modified: python/branches/py3k/Modules/_localemodule.c Log: Use a newer API for creating the module so we don't have to create the docstring manually. Saves code and a call to PyString_FromString. (There are still more ca

[Python-3000-checkins] r57337 - python/branches/py3k/Modules/binascii.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 23 20:31:24 2007 New Revision: 57337 Modified: python/branches/py3k/Modules/binascii.c Log: Remove unused variable. Modified: python/branches/py3k/Modules/binascii.c == --- pytho

[Python-3000-checkins] r57341 - python/branches/py3k/Modules/_hashopenssl.c

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Thu Aug 23 22:28:10 2007 New Revision: 57341 Modified: python/branches/py3k/Modules/_hashopenssl.c Log: Use unicode. Modified: python/branches/py3k/Modules/_hashopenssl.c == --- python/branch

[Python-3000-checkins] r57356 - in python/branches/py3k: Modules/_curses_panel.c Modules/bz2module.c Modules/gcmodule.c Modules/zlibmodule.c Objects/dictobject.c Objects/listobject.c Objects/setobject

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Thu Aug 23 23:42:55 2007 New Revision: 57356 Modified: python/branches/py3k/Modules/_curses_panel.c python/branches/py3k/Modules/bz2module.c python/branches/py3k/Modules/gcmodule.c python/branches/py3k/Modules/zlibmodule.c python/branches/py3k/Objects/dict

[Python-3000-checkins] r57358 - python/branches/py3k/Lib/dumbdbm.py

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 24 00:06:07 2007 New Revision: 57358 Modified: python/branches/py3k/Lib/dumbdbm.py Log: Fix test_shelve when it uses dumbdbm. Found and fixed by Larry Hastings. Modified: python/branches/py3k/Lib/dumbdbm.py ==

[Python-3000-checkins] r57359 - in python/branches/py3k: Lib/test/test_builtin.py Objects/floatobject.c Objects/longobject.c Python/bltinmodule.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 00:07:24 2007 New Revision: 57359 Modified: python/branches/py3k/Lib/test/test_builtin.py python/branches/py3k/Objects/floatobject.c python/branches/py3k/Objects/longobject.c python/branches/py3k/Python/bltinmodule.c Log: Finish the work on __r

[Python-3000-checkins] r57361 - in python/branches/py3k: Lib/test/test_math.py Modules/mathmodule.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 00:56:55 2007 New Revision: 57361 Modified: python/branches/py3k/Lib/test/test_math.py python/branches/py3k/Modules/mathmodule.c Log: Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ methods (respectively). With Keir Mierle.

[Python-3000-checkins] r57363 - python/branches/py3k/Objects/methodobject.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 01:35:15 2007 New Revision: 57363 Modified: python/branches/py3k/Objects/methodobject.c Log: CFunctions' doc strings should be Unicode. Modified: python/branches/py3k/Objects/methodobject.c =

[Python-3000-checkins] r57364 - in python/branches/py3k: Lib/test/test_set.py Objects/setobject.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 01:57:24 2007 New Revision: 57364 Modified: python/branches/py3k/Lib/test/test_set.py python/branches/py3k/Objects/setobject.c Log: Patch by Keir Mierle so that sets can be compared to other objects that know how to compare themselves to sets. (Prep

[Python-3000-checkins] r57365 - python/branches/py3k/Modules/_heapqmodule.c

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 24 01:58:43 2007 New Revision: 57365 Modified: python/branches/py3k/Modules/_heapqmodule.c Log: Use UTF-8 for a docstring that contains non-ASCII chars. Modified: python/branches/py3k/Modules/_heapqmodule.c ===

[Python-3000-checkins] r57366 - python/branches/py3k/Modules/_cursesmodule.c

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 24 02:06:36 2007 New Revision: 57366 Modified: python/branches/py3k/Modules/_cursesmodule.c Log: Return unicode for a key name from a wide character Modified: python/branches/py3k/Modules/_cursesmodule.c ===

[Python-3000-checkins] r57367 - python/branches/py3k/Modules/errnomodule.c

2007-08-23 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 24 02:10:00 2007 New Revision: 57367 Modified: python/branches/py3k/Modules/errnomodule.c Log: Use unicode for the errno.errorcode names Modified: python/branches/py3k/Modules/errnomodule.c =

[Python-3000-checkins] r57368 - python/branches/py3k/Python/bltinmodule.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 04:02:45 2007 New Revision: 57368 Modified: python/branches/py3k/Python/bltinmodule.c Log: Before calling _PyType_Lookup() the type needs to be initialized. Modified: python/branches/py3k/Python/bltinmodule.c ==

[Python-3000-checkins] r57372 - python/branches/py3k/Lib/test/test_long.py

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 05:46:30 2007 New Revision: 57372 Modified: python/branches/py3k/Lib/test/test_long.py Log: math.floor() now returns the argument, so the overflow test no longer matters. Modified: python/branches/py3k/Lib/test/test_long.py ===

[Python-3000-checkins] r57373 - python/branches/py3k/Modules/timemodule.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 05:51:52 2007 New Revision: 57373 Modified: python/branches/py3k/Modules/timemodule.c Log: Patch by Ero Carrera to get rid of PyString in timemodule.c. Modified: python/branches/py3k/Modules/timemodule.c ===

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

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 06:05:13 2007 New Revision: 57374 Modified: python/branches/py3k/Modules/datetimemodule.c Log: Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away. Also, this now leaks a bit -- that's for tomorrow's sprint day. Modified: p

[Python-3000-checkins] r57375 - python/branches/py3k/Lib/uuid.py

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 06:13:42 2007 New Revision: 57375 Modified: python/branches/py3k/Lib/uuid.py Log: Make uuid.py thread-safe. Fix by Yuri Ginsburg. Modified: python/branches/py3k/Lib/uuid.py =

[Python-3000-checkins] r57377 - python/branches/py3k/Modules/_bsddb.c

2007-08-23 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 24 07:08:58 2007 New Revision: 57377 Modified: python/branches/py3k/Modules/_bsddb.c Log: Fix logic bug that triggered assert. Modified: python/branches/py3k/Modules/_bsddb.c ==

[Python-3000-checkins] r57380 - in python/branches/py3k/Lib: bsddb/__init__.py test/test_bsddb.py

2007-08-23 Thread gregory.p.smith
Author: gregory.p.smith Date: Fri Aug 24 07:32:10 2007 New Revision: 57380 Modified: python/branches/py3k/Lib/bsddb/__init__.py python/branches/py3k/Lib/test/test_bsddb.py Log: reapply of r57378 to fix bug 1725856 Modified: python/branches/py3k/Lib/bsddb/__init__.py ===