Author: martin.v.loewis
Date: Tue Aug 14 11:23:10 2007
New Revision: 57009
Modified:
python/branches/py3k/Doc/lib/libstring.tex
python/branches/py3k/Lib/string.py
python/branches/py3k/Lib/test/test_csv.py
python/branches/py3k/Lib/test/test_pkgimport.py
python/branches/py3k/Lib/test/
Author: martin.v.loewis
Date: Tue Aug 14 11:24:24 2007
New Revision: 57010
Modified:
python/branches/py3k/Lib/test/test_gdbm.py
Log:
Fix test_gdbm.
Modified: python/branches/py3k/Lib/test/test_gdbm.py
==
--- python/br
Author: guido.van.rossum
Date: Tue Aug 14 17:42:45 2007
New Revision: 57020
Modified:
python/branches/py3k/Lib/test/test_dbm.py
python/branches/py3k/Modules/dbmmodule.c
Log:
The dbm module should use bytes for keys. This makes test_shelve pass.
Modified: python/branches/py3k/Lib/test/test
Author: jeremy.hylton
Date: Tue Aug 14 18:47:39 2007
New Revision: 57024
Added:
python/branches/py3k/Lib/test/test_xmlrpc_net.py
Modified:
python/branches/py3k/Lib/xmlrpclib.py
Log:
Change xmlrpclib to use the newer httplib interface.
Note that it's hard to test xmlrpclib, because the serve
Author: jeremy.hylton
Date: Tue Aug 14 19:08:07 2007
New Revision: 57025
Modified:
python/branches/py3k/Lib/httplib.py
python/branches/py3k/Lib/test/test_httplib.py
Log:
Remove Python 1.5 compatibility layer from httplib.
The two clients in the std library have been updated to use the newer
Author: collin.winter
Date: Tue Aug 14 19:47:27 2007
New Revision: 57026
Modified:
python/branches/py3k/Python/traceback.c
Log:
Get rid of traceback.c:tb_getattr in favor of marking the members as READONLY.
Modified: python/branches/py3k/Python/traceback.c
=
Author: collin.winter
Date: Tue Aug 14 19:53:54 2007
New Revision: 57028
Modified:
python/branches/py3k/Lib/test/test_builtin.py
python/branches/py3k/Python/traceback.c
Log:
Bug #1772489: make dir() work on traceback objects again.
Modified: python/branches/py3k/Lib/test/test_builtin.py
===
Author: martin.v.loewis
Date: Tue Aug 14 23:57:32 2007
New Revision: 57042
Modified:
python/branches/py3k/Lib/test/test_bool.py
python/branches/py3k/Objects/stringobject.c
Log:
Format bools properly in %d.
Modified: python/branches/py3k/Lib/test/test_bool.py
===
Author: guido.van.rossum
Date: Wed Aug 15 05:56:40 2007
New Revision: 57045
Modified:
python/branches/py3k/Lib/test/test_socket.py
python/branches/py3k/Modules/socketmodule.c
Log:
Down with str8!
Change various socket APIs to use bytes or str instead str8.
Modified: python/branches/py3k/Li