[Python-3000-checkins] r57713 - python/branches/py3k/Lib/test/test_unicode_file.py

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 12:08:57 2007 New Revision: 57713 Modified: python/branches/py3k/Lib/test/test_unicode_file.py Log: Stop testing for encoded file names, as Python 3 does not support them, anyway. Modified: python/branches/py3k/Lib/test/test_unicode_file.py ===

[Python-3000-checkins] r57715 - python/branches/py3k/Modules/nismodule.c

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 12:21:51 2007 New Revision: 57715 Modified: python/branches/py3k/Modules/nismodule.c Log: Use s# instead of t# for nis_match. Modified: python/branches/py3k/Modules/nismodule.c ===

Re: [Python-3000-checkins] r57691 - python/branches/py3k/Lib/email

2007-08-30 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Aug 29, 2007, at 11:51 PM, Guido van Rossum wrote: > On 8/29/07, Barry Warsaw <[EMAIL PROTECTED]> wrote: >> On Aug 29, 2007, at 11:28 PM, Guido van Rossum wrote: >>> No, I don't think I can recover the changes. Would it work to just >>> copy the fi

[Python-3000-checkins] r57718 - python/branches/py3k/Lib/test/test_smtplib.py

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 16:02:43 2007 New Revision: 57718 Modified: python/branches/py3k/Lib/test/test_smtplib.py Log: Two changes (not enough to make the test pass though) having to do with the bytes() constructor when passing str. Modified: python/branches/py3k/Lib/test/te

[Python-3000-checkins] r57719 - in python/branches/py3k/Lib: email/base64mime.py email/header.py email/message.py email/quoprimime.py email/test/test_email.py smtplib.py

2007-08-30 Thread barry.warsaw
Author: barry.warsaw Date: Thu Aug 30 16:28:55 2007 New Revision: 57719 Modified: python/branches/py3k/Lib/email/base64mime.py python/branches/py3k/Lib/email/header.py python/branches/py3k/Lib/email/message.py python/branches/py3k/Lib/email/quoprimime.py python/branches/py3k/Lib/ema

[Python-3000-checkins] r57720 - python/branches/py3k/Modules/timemodule.c

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 16:37:48 2007 New Revision: 57720 Modified: python/branches/py3k/Modules/timemodule.c Log: Explicitly convert tzname to Unicode. Fixes #1040. Modified: python/branches/py3k/Modules/timemodule.c ===

[Python-3000-checkins] r57721 - python/branches/py3k/README

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 16:51:05 2007 New Revision: 57721 Modified: python/branches/py3k/README Log: Move the copyright and license stuff to the end. Modified: python/branches/py3k/README == --- pyth

[Python-3000-checkins] r57722 - in python/branches/py3k: Modules/main.c Tools/buildbot/test.bat

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 16:57:25 2007 New Revision: 57722 Modified: python/branches/py3k/Modules/main.c python/branches/py3k/Tools/buildbot/test.bat Log: Implement PYTHONNOERRORWINDOW. Modified: python/branches/py3k/Modules/main.c ===

[Python-3000-checkins] r57724 - python/branches/py3k/Tools/msi/msi.py python/branches/py3k/Tools/msi/msilib.py

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 17:23:04 2007 New Revision: 57724 Modified: python/branches/py3k/Tools/msi/msi.py python/branches/py3k/Tools/msi/msilib.py Log: Port to Python 3.0. Modified: python/branches/py3k/Tools/msi/msi.py ==

[Python-3000-checkins] r57725 - python/branches/py3k/Objects/unicodeobject.c

2007-08-30 Thread walter.doerwald
Author: walter.doerwald Date: Thu Aug 30 17:29:21 2007 New Revision: 57725 Modified: python/branches/py3k/Objects/unicodeobject.c Log: Rewrap line. Modified: python/branches/py3k/Objects/unicodeobject.c == --- python/

[Python-3000-checkins] r57728 - python/branches/py3k/Objects/unicodeobject.c

2007-08-30 Thread walter.doerwald
Author: walter.doerwald Date: Thu Aug 30 17:35:26 2007 New Revision: 57728 Modified: python/branches/py3k/Objects/unicodeobject.c Log: Set startinpos before calling the error handler. Modified: python/branches/py3k/Objects/unicodeobject.c ==

[Python-3000-checkins] r57729 - python/branches/py3k/Modules/timemodule.c

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 17:40:24 2007 New Revision: 57729 Modified: python/branches/py3k/Modules/timemodule.c Log: Move definition of TZNAME_ENCODING further up. Modified: python/branches/py3k/Modules/timemodule.c ===

Re: [Python-3000-checkins] r57722 - in python/branches/py3k: Modules/main.c Tools/buildbot/test.bat

2007-08-30 Thread Thomas Heller
martin.v.loewis schrieb: > Author: martin.v.loewis > Date: Thu Aug 30 16:57:25 2007 > New Revision: 57722 > > Modified: >python/branches/py3k/Modules/main.c >python/branches/py3k/Tools/buildbot/test.bat > Log: > Implement PYTHONNOERRORWINDOW. > Does not yet work, because rt.bat calls py

[Python-3000-checkins] r57731 - in python/branches/py3k: Lib/test/test_os.py Modules/posixmodule.c

2007-08-30 Thread thomas.heller
Author: thomas.heller Date: Thu Aug 30 19:15:14 2007 New Revision: 57731 Modified: python/branches/py3k/Lib/test/test_os.py python/branches/py3k/Modules/posixmodule.c Log: Forbid an empty argument list in execv call. Fixes issue 1039. Modified: python/branches/py3k/Lib/test/test_os.py

[Python-3000-checkins] r57732 - in python/branches/py3k: Misc/NEWS README RELNOTES

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 19:16:55 2007 New Revision: 57732 Added: python/branches/py3k/RELNOTES (contents, props changed) Modified: python/branches/py3k/Misc/NEWS python/branches/py3k/README Log: Update Misc/NEWS. Add RELNOTES. Modified: python/branches/py3k/Misc/NEW

[Python-3000-checkins] r57733 - python/branches/py3k/Include/patchlevel.h

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 19:20:01 2007 New Revision: 57733 Modified: python/branches/py3k/Include/patchlevel.h Log: Update patch level to 3.0a1. We're close enough. Modified: python/branches/py3k/Include/patchlevel.h ==

[Python-3000-checkins] r57734 - python/branches/py3k/LICENSE

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 19:21:12 2007 New Revision: 57734 Modified: python/branches/py3k/LICENSE Log: Add 2.6 and 3.0 to the silly list. Modified: python/branches/py3k/LICENSE == --- python/branches/

[Python-3000-checkins] r57735 - python/branches/py3k/README

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Thu Aug 30 19:22:44 2007 New Revision: 57735 Modified: python/branches/py3k/README Log: Fix typo Modified: python/branches/py3k/README == --- python/branches/py3k/README (original) +++ python

[Python-3000-checkins] r57736 - python/branches/py3k/Demo/classes/bitvec.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Thu Aug 30 19:37:22 2007 New Revision: 57736 Modified: python/branches/py3k/Demo/classes/bitvec.py Log: Fix a lingering string exception. Modified: python/branches/py3k/Demo/classes/bitvec.py ==

[Python-3000-checkins] r57739 - python/branches/py3k/Lib/test/test_abstract_numbers.py

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 19:46:57 2007 New Revision: 57739 Modified: python/branches/py3k/Lib/test/test_abstract_numbers.py Log: Enable the trunc() test. Modified: python/branches/py3k/Lib/test/test_abstract_numbers.py =

[Python-3000-checkins] r57738 - in python/branches/py3k/Lib: numbers.py test/test_abstract_numbers.py

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 19:45:54 2007 New Revision: 57738 Added: python/branches/py3k/Lib/numbers.py (contents, props changed) python/branches/py3k/Lib/test/test_abstract_numbers.py (contents, props changed) Log: Add numbers.py. I suspect this is an old version, but J

[Python-3000-checkins] r57742 - python/branches/py3k/Lib/test/test_os.py

2007-08-30 Thread thomas.heller
Author: thomas.heller Date: Thu Aug 30 19:57:21 2007 New Revision: 57742 Modified: python/branches/py3k/Lib/test/test_os.py Log: Calling execvp with an empty argument list raises ValueError, but we want to test for OSError. Modified: python/branches/py3k/Lib/test/test_os.py ==

[Python-3000-checkins] r57744 - python/branches/py3k/Lib/plat-mac/plistlib.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Thu Aug 30 20:11:17 2007 New Revision: 57744 Modified: python/branches/py3k/Lib/plat-mac/plistlib.py Log: 1/0 -> True/False cleanup. Modified: python/branches/py3k/Lib/plat-mac/plistlib.py =

[Python-3000-checkins] r57745 - python/branches/py3k/Lib/plat-mac/FrameWork.py python/branches/py3k/Lib/plat-mac/MiniAEFrame.py python/branches/py3k/Lib/plat-mac/PixMapWrapper.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Thu Aug 30 20:11:48 2007 New Revision: 57745 Modified: python/branches/py3k/Lib/plat-mac/FrameWork.py python/branches/py3k/Lib/plat-mac/MiniAEFrame.py python/branches/py3k/Lib/plat-mac/PixMapWrapper.py Log: Kill more lingering string exceptions in Lib/plat-mac/

[Python-3000-checkins] r57749 - in python/branches/py3k: Demo/scripts/toaiff.py Lib/UserString.py Lib/encodings/utf_32.py Parser/asdl.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Thu Aug 30 20:18:27 2007 New Revision: 57749 Modified: python/branches/py3k/Demo/scripts/toaiff.py python/branches/py3k/Lib/UserString.py python/branches/py3k/Lib/encodings/utf_32.py python/branches/py3k/Parser/asdl.py Log: More raise statement normalization

[Python-3000-checkins] r57751 - python/branches/py3k/Tools/msi/msi.py

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 20:27:06 2007 New Revision: 57751 Modified: python/branches/py3k/Tools/msi/msi.py Log: Bug #1746880: Correctly install DLLs into system32 folder on Win64. Modified: python/branches/py3k/Tools/msi/msi.py ==

[Python-3000-checkins] r57752 - python/branches/py3k/Objects/typeobject.c

2007-08-30 Thread georg.brandl
Author: georg.brandl Date: Thu Aug 30 20:29:48 2007 New Revision: 57752 Modified: python/branches/py3k/Objects/typeobject.c Log: Fix #1753395. Modified: python/branches/py3k/Objects/typeobject.c == --- python/branches

[Python-3000-checkins] r57753 - python/branches/py3k/Doc/README.txt python/branches/py3k/Doc/license.rst

2007-08-30 Thread georg.brandl
Author: georg.brandl Date: Thu Aug 30 20:34:23 2007 New Revision: 57753 Modified: python/branches/py3k/Doc/README.txt python/branches/py3k/Doc/license.rst Log: Add 3.0 to the silly list in license.rst too, and update the Doc README. Modified: python/branches/py3k/Doc/README.txt ===

[Python-3000-checkins] r57757 - python/branches/py3k/Lib/distutils/msvccompiler.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Thu Aug 30 20:46:25 2007 New Revision: 57757 Modified: python/branches/py3k/Lib/distutils/msvccompiler.py Log: Fix a typo in the distutils cleanup. Modified: python/branches/py3k/Lib/distutils/msvccompiler.py =

[Python-3000-checkins] r57756 - in python/branches/py3k: Misc/NEWS RELNOTES

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 20:44:53 2007 New Revision: 57756 Modified: python/branches/py3k/Misc/NEWS python/branches/py3k/RELNOTES Log: Small updates. Modified: python/branches/py3k/Misc/NEWS == ---

[Python-3000-checkins] r57758 - in python/branches/py3k: Doc/includes/minidom-example.py Doc/tools/sphinx-build.py PC/testpy.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Thu Aug 30 20:50:25 2007 New Revision: 57758 Modified: python/branches/py3k/Doc/includes/minidom-example.py python/branches/py3k/Doc/tools/sphinx-build.py python/branches/py3k/PC/testpy.py Log: Fix more lingering print statements. Modified: python/branches/py3

[Python-3000-checkins] r57761 - python/branches/py3k/Lib/email/test/test_email.py

2007-08-30 Thread barry.warsaw
Author: barry.warsaw Date: Thu Aug 30 21:17:18 2007 New Revision: 57761 Modified: python/branches/py3k/Lib/email/test/test_email.py Log: More email package fixes. Modified: python/branches/py3k/Lib/email/test/test_email.py ==

[Python-3000-checkins] r57763 - python/branches/py3k/RELNOTES

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Aug 30 22:18:10 2007 New Revision: 57763 Modified: python/branches/py3k/RELNOTES Log: Add a note about the openssl dependency. Switch to '*' bullets for easier copying into the website. Modified: python/branches/py3k/RELNOTES ===

[Python-3000-checkins] r57766 - python/branches/py3k/Lib/idlelib/idlever.py

2007-08-30 Thread kurt.kaiser
Author: kurt.kaiser Date: Thu Aug 30 22:51:49 2007 New Revision: 57766 Modified: python/branches/py3k/Lib/idlelib/idlever.py Log: Bump IDLE version. Modified: python/branches/py3k/Lib/idlelib/idlever.py == --- python/

[Python-3000-checkins] r57767 - python/branches/py3k/Lib/test/test_normalization.py python/branches/py3k/Lib/test/test_support.py

2007-08-30 Thread martin.v.loewis
Author: martin.v.loewis Date: Thu Aug 30 22:58:02 2007 New Revision: 57767 Modified: python/branches/py3k/Lib/test/test_normalization.py python/branches/py3k/Lib/test/test_support.py Log: Explicitly use UTF-8 as the encoding for the normalization file. Modified: python/branches/py3k/Lib/te

[Python-3000-checkins] r57768 - python/branches/py3k/Lib/idlelib/IOBinding.py

2007-08-30 Thread kurt.kaiser
Author: kurt.kaiser Date: Thu Aug 30 23:00:19 2007 New Revision: 57768 Modified: python/branches/py3k/Lib/idlelib/IOBinding.py Log: Don't ascii encode eol_convention. Was causing file write to fail. Modified: python/branches/py3k/Lib/idlelib/IOBinding.py =

[Python-3000-checkins] r57770 - python/branches/py3k/Misc/NEWS

2007-08-30 Thread kurt.kaiser
Author: kurt.kaiser Date: Thu Aug 30 23:52:19 2007 New Revision: 57770 Modified: python/branches/py3k/Misc/NEWS Log: Fix a typo and a trailing space. N.B. NEWS doesn't mention that map() and filter() return iterators. Modified: python/branches/py3k/Misc/NEWS =

[Python-3000-checkins] r57772 - python/branches/py3k/Misc/NEWS

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 00:07:17 2007 New Revision: 57772 Modified: python/branches/py3k/Misc/NEWS Log: Add some miscellanea. Modified: python/branches/py3k/Misc/NEWS == --- python/branches/py3k/Misc

[Python-3000-checkins] r57774 - python/branches/py3k/Lib/idlelib/NEWS.txt

2007-08-30 Thread kurt.kaiser
Author: kurt.kaiser Date: Fri Aug 31 00:16:49 2007 New Revision: 57774 Modified: python/branches/py3k/Lib/idlelib/NEWS.txt Log: IDLE's py3k NEWS Modified: python/branches/py3k/Lib/idlelib/NEWS.txt == --- python/branch

[Python-3000-checkins] r57775 - in python/branches/py3k: Lib/test/test_builtin.py Lib/test/test_long.py Lib/test/test_unicode.py Objects/stringlib/formatter.h

2007-08-30 Thread eric.smith
Author: eric.smith Date: Fri Aug 31 00:23:08 2007 New Revision: 57775 Modified: python/branches/py3k/Lib/test/test_builtin.py python/branches/py3k/Lib/test/test_long.py python/branches/py3k/Lib/test/test_unicode.py python/branches/py3k/Objects/stringlib/formatter.h Log: Added format te

[Python-3000-checkins] r57778 - in python/branches/py3k: Lib/test/test_httplib.py

2007-08-30 Thread thomas.wouters
Author: thomas.wouters Date: Fri Aug 31 00:39:17 2007 New Revision: 57778 Modified: python/branches/py3k/ (props changed) python/branches/py3k/Lib/test/test_httplib.py Log: Merged revisions 57772-5 via svnmerge from svn+ssh://[EMAIL PROTECTED]/python/trunk r57776 | thomas.

[Python-3000-checkins] r57779 - in python/branches/py3k: Include/object.h Include/opcode.h Lib/UserList.py Lib/UserString.py Lib/opcode.py Lib/sre_parse.py Lib/test/list_tests.py Lib/test/seq_tests.py

2007-08-30 Thread thomas.wouters
Author: thomas.wouters Date: Fri Aug 31 00:57:53 2007 New Revision: 57779 Modified: python/branches/py3k/Include/object.h python/branches/py3k/Include/opcode.h python/branches/py3k/Lib/UserList.py python/branches/py3k/Lib/UserString.py python/branches/py3k/Lib/opcode.py python/br

[Python-3000-checkins] r57780 - python/branches/py3k/Modules/_cursesmodule.c

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 01:34:01 2007 New Revision: 57780 Modified: python/branches/py3k/Modules/_cursesmodule.c Log: Remove curses temp file consistently. Modified: python/branches/py3k/Modules/_cursesmodule.c

[Python-3000-checkins] r57788 - in python/branches/py3k/Lib: asynchat.py test/test_smtplib.py

2007-08-30 Thread thomas.wouters
Author: thomas.wouters Date: Fri Aug 31 02:20:14 2007 New Revision: 57788 Modified: python/branches/py3k/Lib/asynchat.py python/branches/py3k/Lib/test/test_smtplib.py Log: Fix test_smtplib by munging asynchat some more. Modified: python/branches/py3k/Lib/asynchat.py =

[Python-3000-checkins] r57790 - python/branches/py3k/Objects/floatobject.c

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 02:27:03 2007 New Revision: 57790 Modified: python/branches/py3k/Objects/floatobject.c Log: Use pow() instead of repeated multiplication by 10 in round(x, n). Modified: python/branches/py3k/Objects/floatobject.c ===

[Python-3000-checkins] r57791 - python/branches/py3k/Doc/whatsnew/3.0.rst

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 02:37:00 2007 New Revision: 57791 Modified: python/branches/py3k/Doc/whatsnew/3.0.rst Log: First draft of a what's new document. (There's something wrong with my network right now so I can't build it.) Modified: python/branches/py3k/Doc/whatsnew/3.0.r

[Python-3000-checkins] r57792 - python/branches/py3k/RELNOTES

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 02:38:53 2007 New Revision: 57792 Modified: python/branches/py3k/RELNOTES Log: Minor tweaks. Modified: python/branches/py3k/RELNOTES == --- python/branches/py3k/RELNOTES

[Python-3000-checkins] r57793 - python/branches/py3k/Python/import.c

2007-08-30 Thread collin.winter
Author: collin.winter Date: Fri Aug 31 02:42:15 2007 New Revision: 57793 Modified: python/branches/py3k/Python/import.c Log: Update import.c's MAGIC value for the new raise syntax (as opposed to merely updating the comment). Modified: python/branches/py3k/Python/import.c =

[Python-3000-checkins] r57794 - python/branches/py3k/Lib/test/test_raise.py

2007-08-30 Thread collin.winter
Author: collin.winter Date: Fri Aug 31 02:47:26 2007 New Revision: 57794 Modified: python/branches/py3k/Lib/test/test_raise.py Log: Cut test_raise down to size. Modified: python/branches/py3k/Lib/test/test_raise.py ==

[Python-3000-checkins] r57796 - python/branches/py3k/Include/pyerrors.h

2007-08-30 Thread collin.winter
Author: collin.winter Date: Fri Aug 31 02:59:38 2007 New Revision: 57796 Modified: python/branches/py3k/Include/pyerrors.h Log: Fix a compile error on Windows. Modified: python/branches/py3k/Include/pyerrors.h == --- p

[Python-3000-checkins] r57797 - in python/branches/py3k: Lib/test/test_builtin.py Lib/test/test_string.py Python/bltinmodule.c

2007-08-30 Thread eric.smith
Author: eric.smith Date: Fri Aug 31 03:14:01 2007 New Revision: 57797 Modified: python/branches/py3k/Lib/test/test_builtin.py python/branches/py3k/Lib/test/test_string.py python/branches/py3k/Python/bltinmodule.c Log: Added test cases for string.Formatter subclassing. Made format_spec par

[Python-3000-checkins] r57798 - python/branches/py3k/Lib/test/test_float.py

2007-08-30 Thread eric.smith
Author: eric.smith Date: Fri Aug 31 03:33:06 2007 New Revision: 57798 Modified: python/branches/py3k/Lib/test/test_float.py Log: Fixed test name. Modified: python/branches/py3k/Lib/test/test_float.py == --- python/bran

[Python-3000-checkins] r57799 - in python/branches/py3k/Lib: string.py test/test_string.py

2007-08-30 Thread eric.smith
Author: eric.smith Date: Fri Aug 31 04:26:31 2007 New Revision: 57799 Modified: python/branches/py3k/Lib/string.py python/branches/py3k/Lib/test/test_string.py Log: Changed signature of string.Formatter.get_field, per suggestion by Ron Adam. Added test case for using all parameters in strin

[Python-3000-checkins] r57800 - in python/branches/py3k/Lib/email: header.py test/test_email.py

2007-08-30 Thread barry.warsaw
Author: barry.warsaw Date: Fri Aug 31 04:35:00 2007 New Revision: 57800 Modified: python/branches/py3k/Lib/email/header.py python/branches/py3k/Lib/email/test/test_email.py Log: More email package fixes. This repairs the linear whitespace insertion between RFC 2047 encoded words without lea

[Python-3000-checkins] r57801 - in python/branches/py3k/Lib/email: encoders.py message.py test/test_email.py utils.py

2007-08-30 Thread barry.warsaw
Author: barry.warsaw Date: Fri Aug 31 05:04:26 2007 New Revision: 57801 Modified: python/branches/py3k/Lib/email/encoders.py python/branches/py3k/Lib/email/message.py python/branches/py3k/Lib/email/test/test_email.py python/branches/py3k/Lib/email/utils.py Log: More email package fixes

[Python-3000-checkins] r57803 - in python/branches/py3k/Lib/email: quoprimime.py test/test_email.py

2007-08-30 Thread barry.warsaw
Author: barry.warsaw Date: Fri Aug 31 05:26:19 2007 New Revision: 57803 Modified: python/branches/py3k/Lib/email/quoprimime.py python/branches/py3k/Lib/email/test/test_email.py Log: More email package fixes. Fix a couple of tests since .body_encode()'s arguments have changed. Also, I think

[Python-3000-checkins] r57804 - python/branches/py3k/Doc/tutorial/controlflow.rst python/branches/py3k/Doc/tutorial/datastructures.rst

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 05:46:28 2007 New Revision: 57804 Modified: python/branches/py3k/Doc/tutorial/controlflow.rst python/branches/py3k/Doc/tutorial/datastructures.rst Log: A few more fixes to the tutorial Modified: python/branches/py3k/Doc/tutorial/controlflow.rst

[Python-3000-checkins] r57805 - python/branches/py3k/Python/Python-ast.c

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 06:03:25 2007 New Revision: 57805 Modified: python/branches/py3k/Python/Python-ast.c Log: Customary 2nd submit of this file after it's been changed. Modified: python/branches/py3k/Python/Python-ast.c ===

[Python-3000-checkins] r57806 - python/branches/py3k/Doc/library/dis.rst

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 06:10:28 2007 New Revision: 57806 Modified: python/branches/py3k/Doc/library/dis.rst Log: Thomas removed all the SLICE op codes Modified: python/branches/py3k/Doc/library/dis.rst =

[Python-3000-checkins] r57807 - python/branches/py3k/Lib/idlelib/PyShell.py

2007-08-30 Thread kurt.kaiser
Author: kurt.kaiser Date: Fri Aug 31 06:15:13 2007 New Revision: 57807 Modified: python/branches/py3k/Lib/idlelib/PyShell.py Log: 1. Don't encode input strings to bytes. 2. Re-enable stderr redirection. Modified: python/branches/py3k/Lib/idlelib/PyShell.py

[Python-3000-checkins] r57808 - python/branches/py3k/Python/bltinmodule.c

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 06:17:51 2007 New Revision: 57808 Modified: python/branches/py3k/Python/bltinmodule.c Log: Remove chr8, we're not likely to need it at this point Modified: python/branches/py3k/Python/bltinmodule.c ==

[Python-3000-checkins] r57810 - python/branches/py3k/Python/getargs.c

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 06:31:47 2007 New Revision: 57810 Modified: python/branches/py3k/Python/getargs.c Log: Try to fix a problem with large values on Win64. Diagnosed by Thomas Heller Modified: python/branches/py3k/Python/getargs.c

[Python-3000-checkins] r57809 - in python/branches/py3k/Lib: mailbox.py test/test_mailbox.py test/test_old_mailbox.py

2007-08-30 Thread guido.van.rossum
Author: guido.van.rossum Date: Fri Aug 31 06:25:05 2007 New Revision: 57809 Modified: python/branches/py3k/Lib/mailbox.py python/branches/py3k/Lib/test/test_mailbox.py python/branches/py3k/Lib/test/test_old_mailbox.py Log: Force test_mailbox and test_old_mailbox into submission. (a) Sever

[Python-3000-checkins] r57811 - in python/branches/py3k: Modules/_randommodule.c Modules/_sre.c Modules/datetimemodule.c Objects/abstract.c Objects/floatobject.c Objects/sliceobject.c PC/_winreg.c

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 06:32:55 2007 New Revision: 57811 Modified: python/branches/py3k/Modules/_randommodule.c python/branches/py3k/Modules/_sre.c python/branches/py3k/Modules/datetimemodule.c python/branches/py3k/Objects/abstract.c python/branches/py3k/Objects/float

[Python-3000-checkins] r57812 - python/branches/py3k/Python/getargs.c

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 07:20:36 2007 New Revision: 57812 Modified: python/branches/py3k/Python/getargs.c Log: Try to fix the problem of passing a non-int on Win64 right this time. Modified: python/branches/py3k/Python/getargs.c ===

[Python-3000-checkins] r57813 - python/branches/py3k/Python/getargs.c

2007-08-30 Thread neal.norwitz
Author: neal.norwitz Date: Fri Aug 31 07:32:33 2007 New Revision: 57813 Modified: python/branches/py3k/Python/getargs.c Log: Ugh, hopefully I can get this right. The code is only compiled on Win64 Modified: python/branches/py3k/Python/getargs.c

[Python-3000-checkins] r57815 - python/branches/py3k/Doc/tools/sphinx-build.py

2007-08-30 Thread georg.brandl
Author: georg.brandl Date: Fri Aug 31 08:20:46 2007 New Revision: 57815 Modified: python/branches/py3k/Doc/tools/sphinx-build.py Log: Fix sphinx-build so that it runs with 2.x and 3.x but refuses to start with 3.x. Modified: python/branches/py3k/Doc/tools/sphinx-build.py =

[Python-3000-checkins] r57814 - python/branches/py3k/Doc/whatsnew/3.0.rst

2007-08-30 Thread georg.brandl
Author: georg.brandl Date: Fri Aug 31 08:15:01 2007 New Revision: 57814 Modified: python/branches/py3k/Doc/whatsnew/3.0.rst Log: Correct a few typos. Modified: python/branches/py3k/Doc/whatsnew/3.0.rst == --- python/b

[Python-3000-checkins] r57816 - python/branches/py3k/Modules/posixmodule.c

2007-08-30 Thread thomas.heller
Author: thomas.heller Date: Fri Aug 31 08:44:36 2007 New Revision: 57816 Modified: python/branches/py3k/Modules/posixmodule.c Log: Insert "startfile" into posix_methods again; it was accidentially removed in rev 55543. Modified: python/branches/py3k/Modules/posixmodule.c =

[Python-3000-checkins] r57817 - python/branches/py3k/Lib/test/test_startfile.py

2007-08-30 Thread thomas.heller
Author: thomas.heller Date: Fri Aug 31 08:45:04 2007 New Revision: 57817 Modified: python/branches/py3k/Lib/test/test_startfile.py Log: Fix test_startfile and remove duplicated test. Modified: python/branches/py3k/Lib/test/test_startfile.py =

[Python-3000-checkins] r57818 - python/branches/py3k/Doc/tutorial/introduction.rst

2007-08-30 Thread georg.brandl
Author: georg.brandl Date: Fri Aug 31 08:46:05 2007 New Revision: 57818 Modified: python/branches/py3k/Doc/tutorial/introduction.rst Log: Fix unicode issue in tutorial. Modified: python/branches/py3k/Doc/tutorial/introduction.rst ===