[Python-3000-checkins] r58007 - python/branches/py3k/Doc/reference/compound_stmts.rst

2007-09-06 Thread georg.brandl
Author: georg.brandl Date: Thu Sep 6 16:03:41 2007 New Revision: 58007 Modified: python/branches/py3k/Doc/reference/compound_stmts.rst Log: New exception catching syntax. Modified: python/branches/py3k/Doc/reference/compound_stmts.rst =

[Python-3000-checkins] r58008 - python/branches/py3k/Doc/library/hashlib.rst

2007-09-06 Thread georg.brandl
Author: georg.brandl Date: Thu Sep 6 16:09:10 2007 New Revision: 58008 Modified: python/branches/py3k/Doc/library/hashlib.rst Log: hashlib operates on bytes, not strings. Modified: python/branches/py3k/Doc/library/hashlib.rst ==

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

2007-09-06 Thread guido.van.rossum
Author: guido.van.rossum Date: Thu Sep 6 16:46:41 2007 New Revision: 58011 Modified: python/branches/py3k/Doc/whatsnew/3.0.rst Log: In response to issue 1101, place vastly more emphasis on the new print() function. Modified: python/branches/py3k/Doc/whatsnew/3.0.rst =

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

2007-09-06 Thread georg.brandl
Author: georg.brandl Date: Thu Sep 6 16:49:02 2007 New Revision: 58012 Modified: python/branches/py3k/Doc/extending/extending.rst Log: #1116: reference to old filename fixed. Modified: python/branches/py3k/Doc/extending/extending.rst ==

[Python-3000-checkins] r58016 - python/branches/py3k/setup.py

2007-09-06 Thread skip.montanaro
Author: skip.montanaro Date: Thu Sep 6 18:30:31 2007 New Revision: 58016 Modified: python/branches/py3k/setup.py Log: I think we can just dump the else clause, per the comment I just deleted. Modified: python/branches/py3k/setup.py

Re: [Python-3000-checkins] r58012 - python/branches/py3k/Doc/extending/extending.rst

2007-09-06 Thread Guido van Rossum
I'm guessing this is also wrong on the trunk then? On 9/6/07, georg.brandl wrote: > Author: georg.brandl > Date: Thu Sep 6 16:49:02 2007 > New Revision: 58012 > > Modified: >python/branches/py3k/Doc/extending/extending.rst > Log: > #1116: reference to old filename fixed. > > > Modified: pyth

Re: [Python-3000-checkins] r58012 - python/branches/py3k/Doc/extending/extending.rst

2007-09-06 Thread Georg Brandl
Guido van Rossum schrieb: > I'm guessing this is also wrong on the trunk then? Yes - it's already fixed there :) Georg -- Thus spake the Lord: Thou shalt indent with four spaces. No more, no less. Four shall be the number of spaces thou shalt indent, and the number of thy indenting shall be fo

[Python-3000-checkins] r58017 - python/branches/py3k/Lib/unittest.py

2007-09-06 Thread jeffrey.yasskin
Author: jeffrey.yasskin Date: Thu Sep 6 20:55:17 2007 New Revision: 58017 Modified: python/branches/py3k/Lib/unittest.py Log: Extend unittest's fail*AlmostEqual methods to work on complex numbers. Modified: python/branches/py3k/Lib/unittest.py

[Python-3000-checkins] r58025 - python/branches/py3k/Lib/bsddb/test/test_1413192.py

2007-09-06 Thread gregory.p.smith
Author: gregory.p.smith Date: Fri Sep 7 01:06:50 2007 New Revision: 58025 Modified: python/branches/py3k/Lib/bsddb/test/test_1413192.py Log: merge r58023 to fix issue1112 on windows. make this test more robust and deterministic. Modified: python/branches/py3k/Lib/bsddb/test/test_1413192.py

[Python-3000-checkins] r58026 - python/branches/py3k/Lib/inspect.py

2007-09-06 Thread brett.cannon
Author: brett.cannon Date: Fri Sep 7 04:12:14 2007 New Revision: 58026 Modified: python/branches/py3k/Lib/inspect.py Log: Fix docstring for getfullargspec(). Modified: python/branches/py3k/Lib/inspect.py == --- pytho

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

2007-09-06 Thread kurt.kaiser
Author: kurt.kaiser Date: Fri Sep 7 07:06:21 2007 New Revision: 58033 Modified: python/branches/py3k/Lib/idlelib/IOBinding.py Log: Make IDLE's file decode more robust. 1. coding_spec() only looks at first two lines of bytes to avoid a UnicodeDecodeError if rest of file is e.g. latin-1 2. co