[Python-3000-checkins] r59579 - python/branches/py3k/Lib/test/test_import.py

2007-12-20 Thread christian.heimes
Author: christian.heimes Date: Thu Dec 20 14:16:07 2007 New Revision: 59579 Modified: python/branches/py3k/Lib/test/test_import.py Log: Removed test from test_import. It will never work on all systems, see #1377 Modified: python/branches/py3k/Lib/test/test_import.py ===

[Python-3000-checkins] r59580 - python/branches/py3k/Lib/test/test_pep277.py

2007-12-20 Thread christian.heimes
Author: christian.heimes Date: Thu Dec 20 15:44:41 2007 New Revision: 59580 Modified: python/branches/py3k/Lib/test/test_pep277.py Log: Fixed #1673. I hope it works. I don't have access to a Windows box right now. Modified: python/branches/py3k/Lib/test/test_pep277.py =

[Python-3000-checkins] r59581 - python/branches/py3k/Tools/world/world

2007-12-20 Thread barry.warsaw
Author: barry.warsaw Date: Thu Dec 20 16:55:58 2007 New Revision: 59581 Modified: python/branches/py3k/Tools/world/world Log: Update to the world tool for Python 3. Provided by quentin.gallet-gilles via tracker issue 1671: http://bugs.python.org/issue1671 In addition to updating the code for

[Python-3000-checkins] r59583 - python/branches/py3k/Lib/site.py

2007-12-20 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Dec 20 19:42:56 2007 New Revision: 59583 Modified: python/branches/py3k/Lib/site.py Log: Fix issue #1667. The _Printer() class was using sys.stdin.readline() instead of input() to read the user's input (since at some point in the past raw_input() was removed)

[Python-3000-checkins] r59585 - in python/branches/py3k: Include/longobject.h Objects/longobject.c Objects/rangeobject.c

2007-12-20 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Dec 20 23:57:23 2007 New Revision: 59585 Modified: python/branches/py3k/Include/longobject.h python/branches/py3k/Objects/longobject.c python/branches/py3k/Objects/rangeobject.c Log: Drop _PyLong_FitsInLong. Fixes #1666. Modified: python/branches/py3k/I

[Python-3000-checkins] r59587 - python/branches/py3k/Python/sysmodule.c

2007-12-20 Thread nick.coghlan
Author: nick.coghlan Date: Fri Dec 21 08:31:17 2007 New Revision: 59587 Modified: python/branches/py3k/Python/sysmodule.c Log: Fix thoroughly misleading comment Modified: python/branches/py3k/Python/sysmodule.c == ---