Author: kurt.kaiser
Date: Wed Aug 22 20:06:14 2007
New Revision: 57275
Modified:
python/branches/py3k/Lib/idlelib/IOBinding.py
Log:
1. Fix File Open: don't encode filename to UTF-8 bytes
2. Get test() code working.
Modified: python/branches/py3k/Lib/idlelib/IOBinding.py
==
Author: kurt.kaiser
Date: Wed Aug 22 20:10:19 2007
New Revision: 57276
Modified:
python/branches/py3k/Lib/idlelib/IOBinding.py
Log:
Remove some old comments adequately covered in the code.
Modified: python/branches/py3k/Lib/idlelib/IOBinding.py
Author: guido.van.rossum
Date: Wed Aug 22 20:14:10 2007
New Revision: 57277
Modified:
python/branches/py3k/Lib/io.py
Log:
Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass,
so you can use their class .register() method to register virtual subclasses.
Modified: py
Author: kurt.kaiser
Date: Wed Aug 22 20:57:50 2007
New Revision: 57278
Modified:
python/branches/py3k/Lib/idlelib/MultiCall.py
Log:
Fix some debugging print statements
Modified: python/branches/py3k/Lib/idlelib/MultiCall.py
=
Author: gregory.p.smith
Date: Wed Aug 22 21:23:36 2007
New Revision: 57281
Modified:
python/branches/py3k/Lib/bsddb/test/test_basics.py
python/branches/py3k/Lib/bsddb/test/test_dbshelve.py
python/branches/py3k/Lib/bsddb/test/test_get_none.py
python/branches/py3k/Lib/bsddb/test/test_que
Author: kurt.kaiser
Date: Wed Aug 22 21:41:43 2007
New Revision: 57282
Modified:
python/branches/py3k/Lib/idlelib/MultiCall.py
Log:
Fix bug introduced at r54854 to mass replace string fcns with methods :-)
Modified: python/branches/py3k/Lib/idlelib/MultiCall.py
===
Author: collin.winter
Date: Wed Aug 22 21:45:07 2007
New Revision: 57283
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Python/sysmodule.c
Log:
Patch #1774414: make it possible to use SVK to develop Python.
Modified: python/branches/py3k/Python/sysmodule.c
=
Author: gregory.p.smith
Date: Wed Aug 22 23:28:15 2007
New Revision: 57285
Modified:
python/branches/py3k/Lib/bsddb/test/test_1413192.py
Log:
stop leaving log.001 __db.00* and xxx.db turds in developer
sandboxes when bsddb3 tests are run.
Modified: python/branches/py3k/Lib/bsddb/test/test
Author: kurt.kaiser
Date: Wed Aug 22 23:33:27 2007
New Revision: 57287
Modified:
python/branches/py3k/Lib/idlelib/rpc.py
Log:
Use buffer of type 'bytes' to accumulate from socket.
Modified: python/branches/py3k/Lib/idlelib/rpc.py
===
Author: kurt.kaiser
Date: Wed Aug 22 23:34:28 2007
New Revision: 57289
Modified:
python/branches/py3k/Lib/idlelib/ScriptBinding.py
Log:
Replace file() with open()
Modified: python/branches/py3k/Lib/idlelib/ScriptBinding.py
==
Author: kurt.kaiser
Date: Wed Aug 22 23:38:31 2007
New Revision: 57290
Modified:
python/branches/py3k/Modules/socketmodule.c
Log:
Fix typo in comment
Modified: python/branches/py3k/Modules/socketmodule.c
==
--- python
Author: guido.van.rossum
Date: Wed Aug 22 23:46:00 2007
New Revision: 57294
Modified:
python/branches/py3k/runtests.sh
Log:
Use python -E instead of undef PYTHONPATH.
Modified: python/branches/py3k/runtests.sh
==
---
Author: collin.winter
Date: Wed Aug 22 23:45:02 2007
New Revision: 57292
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/hotshot/log.py
python/branches/py3k/Lib/hotshot/stats.py
Log:
Fix raise statements in hotshot.
Modified: python/branches/py3k/Lib/hotshot/l
Author: alex.martelli
Date: Thu Aug 23 00:39:42 2007
New Revision: 57296
Modified:
python/branches/py3k/Lib/test/test_builtin.py
python/branches/py3k/Python/bltinmodule.c
Log:
Implement the trunc builtin for PEP 3141
Modified: python/branches/py3k/Lib/test/test_builtin.py
Author: kurt.kaiser
Date: Thu Aug 23 01:01:33 2007
New Revision: 57298
Modified:
python/branches/py3k/Lib/idlelib/AutoComplete.py
python/branches/py3k/Lib/idlelib/AutoCompleteWindow.py
python/branches/py3k/Lib/idlelib/Bindings.py
python/branches/py3k/Lib/idlelib/CallTips.py
python/b
Author: collin.winter
Date: Thu Aug 23 01:05:06 2007
New Revision: 57299
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Tools/bgen/bgen/bgenBuffer.py
python/branches/py3k/Tools/bgen/bgen/bgenGenerator.py
python/branches/py3k/Tools/bgen/bgen/bgenHeapBuffer.py
Author: alex.martelli
Date: Thu Aug 23 01:21:33 2007
New Revision: 57302
Modified:
python/branches/py3k/Lib/test/test_builtin.py
python/branches/py3k/Python/bltinmodule.c
Log:
Implement the round functionality for PEP 3141, and add tests for it.
Modified: python/branches/py3k/Lib/test/tes
Author: guido.van.rossum
Date: Thu Aug 23 01:28:23 2007
New Revision: 57303
Modified:
python/branches/py3k/Objects/longobject.c
Log:
Change the error reporting when an invalid string is encountered to avoid
reporting s'x' as the input (which is a lie).
Modified: python/branches/py3k/Objects/l
Author: guido.van.rossum
Date: Thu Aug 23 01:45:42 2007
New Revision: 57304
Modified:
python/branches/py3k/Lib/BaseHTTPServer.py
python/branches/py3k/Lib/xmlrpclib.py
Log:
Fixes by John Reese and Jacques Frechet that make test_xmlrpc pass.
(Note that test_xmlrpc isn't touched by the fixes!)
Author: kurt.kaiser
Date: Thu Aug 23 03:06:15 2007
New Revision: 57308
Modified:
python/branches/py3k/Lib/idlelib/EditorWindow.py
python/branches/py3k/Lib/idlelib/IOBinding.py
python/branches/py3k/Lib/idlelib/RemoteDebugger.py
python/branches/py3k/Lib/idlelib/TreeWidget.py
python/br
Author: guido.van.rossum
Date: Thu Aug 23 04:13:35 2007
New Revision: 57310
Modified:
python/branches/py3k/Doc/library/xmlrpclib.rst
Log:
Correction to the xmlrpc docs by John Reese and Jacques Frechet.
Modified: python/branches/py3k/Doc/library/xmlrpclib.rst
=
Author: kurt.kaiser
Date: Thu Aug 23 07:25:55 2007
New Revision: 57312
Modified:
python/branches/py3k/Lib/idlelib/ColorDelegator.py
python/branches/py3k/Lib/idlelib/Debugger.py
python/branches/py3k/Lib/idlelib/Delegator.py
python/branches/py3k/Lib/idlelib/EditorWindow.py
python/bran
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/py3k/Lib/idlelib/PyShell.py
==
Author: gregory.p.smith
Date: Thu Aug 23 08:37:46 2007
New Revision: 57314
Modified:
python/branches/py3k/Lib/bsddb/__init__.py
Log:
docstring cut n paste correction
Modified: python/branches/py3k/Lib/bsddb/__init__.py
==
24 matches
Mail list logo