[Python-3000-checkins] r57949 - in python/branches/py3k: Doc/library/pdb.rst Lib/pdb.py

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 09:07:56 2007 New Revision: 57949 Modified: python/branches/py3k/Doc/library/pdb.rst python/branches/py3k/Lib/pdb.py Log: Add "print" command to pdb, "print s" previously invoked the print statement. Modified: python/branches/py3k/Doc/library/pdb.rst =

[Python-3000-checkins] r57951 - python/branches/py3k/Doc/library/types.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 09:23:09 2007 New Revision: 57951 Modified: python/branches/py3k/Doc/library/types.rst Log: Fix up the types module docs. Modified: python/branches/py3k/Doc/library/types.rst == -

[Python-3000-checkins] r57952 - python/branches/py3k/Doc/library/string.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 09:27:54 2007 New Revision: 57952 Modified: python/branches/py3k/Doc/library/string.rst Log: Fix the string formatting docs for now; if the feature is changed again, the docs can be changed too. Modified: python/branches/py3k/Doc/library/string.rst =

[Python-3000-checkins] r57953 - python/branches/py3k/Doc/library/abc.rst python/branches/py3k/Doc/library/python.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 10:11:03 2007 New Revision: 57953 Added: python/branches/py3k/Doc/library/abc.rst Modified: python/branches/py3k/Doc/library/python.rst Log: Initial documentation for the `abc` module. Added: python/branches/py3k/Doc/library/abc.rst ===

[Python-3000-checkins] r57956 - python/branches/py3k/Doc/reference/expressions.rst

2007-09-04 Thread thomas.wouters
Author: thomas.wouters Date: Tue Sep 4 11:03:59 2007 New Revision: 57956 Modified: python/branches/py3k/Doc/reference/expressions.rst Log: Update ref docs on slicing. Modified: python/branches/py3k/Doc/reference/expressions.rst ==

[Python-3000-checkins] r57957 - in python/branches/py3k: Include/parsetok.h Include/pythonrun.h Parser/parsetok.c Parser/tokenizer.c Parser/tokenizer.h Python/import.c Python/pythonrun.c

2007-09-04 Thread martin.v.loewis
Author: martin.v.loewis Date: Tue Sep 4 11:18:06 2007 New Revision: 57957 Modified: python/branches/py3k/Include/parsetok.h python/branches/py3k/Include/pythonrun.h python/branches/py3k/Parser/parsetok.c python/branches/py3k/Parser/tokenizer.c python/branches/py3k/Parser/tokenizer.

[Python-3000-checkins] r57959 - python/branches/py3k/Lib/os.py

2007-09-04 Thread thomas.heller
Author: thomas.heller Date: Tue Sep 4 13:27:47 2007 New Revision: 57959 Modified: python/branches/py3k/Lib/os.py Log: Make the _wrap_close type (which is returned by os.popen) iterable. This should fix the Lib\test\test_uuid.py test on Windows. Modified: python/branches/py3k/Lib/os.py ===

[Python-3000-checkins] r57963 - python/branches/py3k/Doc/library/abc.rst python/branches/py3k/Doc/library/os.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 17:45:25 2007 New Revision: 57963 Modified: python/branches/py3k/Doc/library/abc.rst python/branches/py3k/Doc/library/os.rst Log: More abc docs. Modified: python/branches/py3k/Doc/library/abc.rst

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

2007-09-04 Thread guido.van.rossum
Author: guido.van.rossum Date: Tue Sep 4 18:23:16 2007 New Revision: 57966 Modified: python/branches/py3k/Doc/whatsnew/3.0.rst Log: Correction an issue reported by Mark Summerfeld. Modified: python/branches/py3k/Doc/whatsnew/3.0.rst ===

[Python-3000-checkins] r57968 - in python/branches/py3k/Doc: howto/functional.rst library/itertools.rst library/stdtypes.rst library/userdict.rst reference/datamodel.rst

2007-09-04 Thread fred.drake
Author: fred.drake Date: Tue Sep 4 19:33:11 2007 New Revision: 57968 Modified: python/branches/py3k/Doc/howto/functional.rst python/branches/py3k/Doc/library/itertools.rst python/branches/py3k/Doc/library/stdtypes.rst python/branches/py3k/Doc/library/userdict.rst python/branches/py

[Python-3000-checkins] r57969 - python/branches/py3k/Doc/library/stdtypes.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 19:43:37 2007 New Revision: 57969 Modified: python/branches/py3k/Doc/library/stdtypes.rst Log: Docs on dictviews. Modified: python/branches/py3k/Doc/library/stdtypes.rst == --- py

[Python-3000-checkins] r57970 - python/branches/py3k/Doc/library/functions.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 19:50:40 2007 New Revision: 57970 Modified: python/branches/py3k/Doc/library/functions.rst Log: Change docs for builtins that now return iterators. Modified: python/branches/py3k/Doc/library/functions.rst ==

[Python-3000-checkins] r57971 - python/branches/py3k/Doc/library/stdtypes.rst

2007-09-04 Thread georg.brandl
Author: georg.brandl Date: Tue Sep 4 19:58:02 2007 New Revision: 57971 Modified: python/branches/py3k/Doc/library/stdtypes.rst Log: Add a dict view usage example. Modified: python/branches/py3k/Doc/library/stdtypes.rst =

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

2007-09-04 Thread fred.drake
Author: fred.drake Date: Tue Sep 4 21:43:19 2007 New Revision: 57974 Modified: python/branches/py3k/setup.py Log: fix typo Modified: python/branches/py3k/setup.py == --- python/branches/py3k/setup.py (original)

[Python-3000-checkins] r57976 - in python/branches/py3k: Lib/string.py Lib/test/test_unicode.py Objects/stringlib/string_format.h

2007-09-04 Thread eric.smith
Author: eric.smith Date: Wed Sep 5 01:04:22 2007 New Revision: 57976 Modified: python/branches/py3k/Lib/string.py python/branches/py3k/Lib/test/test_unicode.py python/branches/py3k/Objects/stringlib/string_format.h Log: Changed some ValueError's to KeyError and IndexError. Corrected code

[Python-3000-checkins] r57982 - python/branches/py3k/Objects/stringlib/string_format.h

2007-09-04 Thread eric.smith
Author: eric.smith Date: Wed Sep 5 04:02:43 2007 New Revision: 57982 Modified: python/branches/py3k/Objects/stringlib/string_format.h Log: Simplified recursion logic. Modified variable name to match string.Formatter. Modified: python/branches/py3k/Objects/stringlib/string_format.h ==

[Python-3000-checkins] r57983 - python/branches/py3k/Lib/test/test_doctest.py

2007-09-04 Thread guido.van.rossum
Author: guido.van.rossum Date: Wed Sep 5 05:26:38 2007 New Revision: 57983 Modified: python/branches/py3k/Lib/test/test_doctest.py Log: Fix doctest failure introduced by r57949. The formatting of errors from pdb's own print command is different from the formatting of errors when pdb exec's an