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
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/
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
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
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
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
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
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
==
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
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.
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
=
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
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
===
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
===
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
=
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
==
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
===
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
===
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
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
=
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
==
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
===
22 matches
Mail list logo