[Python-3000-checkins] r59423 - python/branches/py3k/Lib/test/test_xmlrpc.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 17:13:06 2007 New Revision: 59423 Modified: python/branches/py3k/Lib/test/test_xmlrpc.py Log: Disabled test_404, see issue #1572 Modified: python/branches/py3k/Lib/test/test_xmlrpc.py

[Python-3000-checkins] r59421 - in python/branches/py3k: Doc/ACKS.txt Doc/c-api/newtypes.rst Doc/library/bdb.rst Doc/library/logging.rst Doc/library/objects.rst Doc/library/othergui.rst Doc/library/re

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 16:33:56 2007 New Revision: 59421 Modified: python/branches/py3k/ (props changed) python/branches/py3k/Doc/ACKS.txt python/branches/py3k/Doc/c-api/newtypes.rst python/branches/py3k/Doc/library/bdb.rst python/branches/py3k/Doc/library/loggi

[Python-3000-checkins] r59422 - python/branches/py3k/Lib/distutils/tests/test_sysconfig.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 16:34:59 2007 New Revision: 59422 Added: python/branches/py3k/Lib/distutils/tests/test_sysconfig.py (contents, props changed) Log: Readded Lib/distutils/tests/test_sysconfig.py Somehow it went missing during the merge Added: python/branches/py3k/Lib

[Python-3000-checkins] r59424 - python/branches/py3k/Lib/test/test_xmlrpc.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 18:09:18 2007 New Revision: 59424 Modified: python/branches/py3k/Lib/test/test_xmlrpc.py Log: Added stop_serving and a timeout to tearDown() It prevents the XML RPC tests from blocking until the end of the world. I think it's a backport candidate and ot

[Python-3000-checkins] r59425 - in python/branches/py3k: Doc/ACKS.txt Doc/glossary.rst Doc/library/atexit.rst Doc/library/bsddb.rst Doc/library/datetime.rst Doc/library/mhlib.rst Doc/library/multifile

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 18:28:33 2007 New Revision: 59425 Modified: python/branches/py3k/ (props changed) python/branches/py3k/Doc/ACKS.txt python/branches/py3k/Doc/glossary.rst python/branches/py3k/Doc/library/atexit.rst python/branches/py3k/Doc/library/bsddb.rs

[Python-3000-checkins] r59426 - python/branches/py3k/Lib/io.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 18:47:40 2007 New Revision: 59426 Modified: python/branches/py3k/Lib/io.py Log: Added descriptor for builtins.open.__doc__ Before the change help(open) didn't return anything helpful but the doc string of io.OpenWrapper. Now it shows the user the docum

[Python-3000-checkins] r59428 - python/branches/py3k/Objects/classobject.c

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 19:27:16 2007 New Revision: 59428 Modified: python/branches/py3k/Objects/classobject.c Log: Fixed a bug found by Marcin Kowalczyk 'Applying PyMethod_Type to 3 arguments crashes Python 3' Modified: python/branches/py3k/Objects/classobject.c

[Python-3000-checkins] r59429 - in python/branches/py3k/Lib: SimpleXMLRPCServer.py test/test_xmlrpc.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 19:38:20 2007 New Revision: 59429 Modified: python/branches/py3k/Lib/SimpleXMLRPCServer.py python/branches/py3k/Lib/test/test_xmlrpc.py Log: Fixed two of the three failing xml rpc tests Modified: python/branches/py3k/Lib/SimpleXMLRPCServer.py ==

[Python-3000-checkins] r59430 - python/branches/py3k/Doc/c-api/concrete.rst python/branches/py3k/Doc/c-api/intro.rst

2007-12-08 Thread georg.brandl
Author: georg.brandl Date: Sat Dec 8 19:58:51 2007 New Revision: 59430 Modified: python/branches/py3k/Doc/c-api/concrete.rst python/branches/py3k/Doc/c-api/intro.rst Log: Replace all remaining occurrences of PyInt_. Modified: python/branches/py3k/Doc/c-api/concrete.rst ===

[Python-3000-checkins] r59431 - python/branches/py3k/Doc/extending/newtypes.rst

2007-12-08 Thread georg.brandl
Author: georg.brandl Date: Sat Dec 8 19:59:56 2007 New Revision: 59431 Modified: python/branches/py3k/Doc/extending/newtypes.rst Log: Fix one more PyInt occurrence. Modified: python/branches/py3k/Doc/extending/newtypes.rst =

[Python-3000-checkins] r59432 - in python/branches/py3k: Misc/NEWS Python/ast.c

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 23:11:32 2007 New Revision: 59432 Modified: python/branches/py3k/Misc/NEWS python/branches/py3k/Python/ast.c Log: Fixed #1573: Improper use of the keyword-only syntax makes the parser crash >>> def f(*, **kw): ... pass ... python: Python/ast.c:652

[Python-3000-checkins] r59433 - python/branches/py3k/Lib/test/test_ast.py python/branches/py3k/Lib/test/test_keywordonlyarg.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 23:17:26 2007 New Revision: 59433 Modified: python/branches/py3k/Lib/test/test_ast.py python/branches/py3k/Lib/test/test_keywordonlyarg.py Log: Added two tests for f(*, **kw) syntax Modified: python/branches/py3k/Lib/test/test_ast.py ===

[Python-3000-checkins] r59434 - python/branches/py3k/Lib/test/test_keywordonlyarg.py python/branches/py3k/Lib/test/test_xmlrpc.py

2007-12-08 Thread christian.heimes
Author: christian.heimes Date: Sat Dec 8 23:32:47 2007 New Revision: 59434 Modified: python/branches/py3k/Lib/test/test_keywordonlyarg.py python/branches/py3k/Lib/test/test_xmlrpc.py Log: Added another test case for kwonly methods Modified: python/branches/py3k/Lib/test/test_keywordonlyarg