summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Backport r66857: make all whatsnew docs accessible.Georg Brandl2008-10-085-15/+27
|
* Note how bytes alias is expected to be usedAndrew M. Kuchling2008-10-081-0/+14
|
* Merged revisions ↵Benjamin Peterson2008-10-043-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 66766-66767,66771-66772,66774,66776,66783-66787,66790,66793,66797 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ................ r66766 | benjamin.peterson | 2008-10-03 06:52:06 -0500 (Fri, 03 Oct 2008) | 1 line update the mac installer script ................ r66767 | andrew.kuchling | 2008-10-03 07:26:42 -0500 (Fri, 03 Oct 2008) | 1 line Docstring typo. ................ r66771 | hirokazu.yamamoto | 2008-10-03 11:18:42 -0500 (Fri, 03 Oct 2008) | 2 lines Fixed following error when DocXMLRPCServer failed. UnboundLocalError: local variable 'serv' referenced before assignment ................ r66772 | andrew.kuchling | 2008-10-03 11:29:19 -0500 (Fri, 03 Oct 2008) | 1 line Mention exception in docstring ................ r66774 | andrew.kuchling | 2008-10-03 11:42:52 -0500 (Fri, 03 Oct 2008) | 1 line Typo fix ................ r66776 | hirokazu.yamamoto | 2008-10-03 12:34:49 -0500 (Fri, 03 Oct 2008) | 2 lines Issue #1706863: Fixed "'NoneType' object has no attribute 'rfind'" error when sqlite libfile not found. ................ r66783 | andrew.kuchling | 2008-10-03 20:02:29 -0500 (Fri, 03 Oct 2008) | 1 line Use correct capitalization of NaN ................ r66784 | andrew.kuchling | 2008-10-03 20:03:42 -0500 (Fri, 03 Oct 2008) | 1 line Docstring change: Specify exception raised ................ r66785 | andrew.kuchling | 2008-10-03 20:04:24 -0500 (Fri, 03 Oct 2008) | 1 line Docstring changes: Specify exceptions raised ................ r66786 | andrew.kuchling | 2008-10-03 20:05:56 -0500 (Fri, 03 Oct 2008) | 3 lines Docstring change for *partition: use same tense as other docstrings. Hyphenate left- and right-justified. Fix 'registerd' typo ................ r66787 | andrew.kuchling | 2008-10-03 22:08:56 -0500 (Fri, 03 Oct 2008) | 1 line two corrections ................ r66790 | andrew.kuchling | 2008-10-04 11:52:01 -0500 (Sat, 04 Oct 2008) | 1 line Set svn:keywords ................ r66793 | georg.brandl | 2008-10-04 13:26:01 -0500 (Sat, 04 Oct 2008) | 2 lines #4041: don't refer to removed and outdated modules. ................ r66797 | benjamin.peterson | 2008-10-04 15:55:50 -0500 (Sat, 04 Oct 2008) | 19 lines Merged revisions 66707,66775,66782 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r66707 | benjamin.peterson | 2008-09-30 18:27:10 -0500 (Tue, 30 Sep 2008) | 1 line fix #4001: fix_imports didn't check for __init__.py before converting to relative imports ........ r66775 | collin.winter | 2008-10-03 12:08:26 -0500 (Fri, 03 Oct 2008) | 4 lines Add an alternative iterative pattern matching system that, while slower, correctly parses files that cause the faster recursive pattern matcher to fail with a recursion error. lib2to3 falls back to the iterative matcher if the recursive one fails. Fixes http://bugs.python.org/issue2532. Thanks to Nick Edds. ........ r66782 | benjamin.peterson | 2008-10-03 17:51:36 -0500 (Fri, 03 Oct 2008) | 1 line add Victor Stinner's fixer for os.getcwdu -> os.getcwd #4023 ........ ................
* Continuously built downloads are in /current.Georg Brandl2008-10-041-1/+1
|
* Some Doc tweaks.Georg Brandl2008-10-023-6/+5
|
* Today is the release datev2.6Barry Warsaw2008-10-011-3/+2
|
* Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs whenGregory P. Smith2008-09-301-0/+4
| | | | | | | calling fork() from a child thread. This disables that unit test (with a note printed to stderr) on those platforms. A caveat about buggy platforms is added to the os.fork documentation.
* Markup fixes. (optparse.rst probably needs an entire revision pass.)Andrew M. Kuchling2008-09-303-16/+16
|
* Markup fixesAndrew M. Kuchling2008-09-301-10/+11
|
* Markup fixAndrew M. Kuchling2008-09-302-2/+2
|
* Edits, and add markupAndrew M. Kuchling2008-09-301-4/+4
|
* issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick ↵Jesse Noller2008-09-301-0/+7
| | | | Coghlan, Damien Miller
* Issue #3965: Allow repeated calls to turtle.Screen, by making it aMartin v. Löwis2008-09-291-4/+4
| | | | | | true singleton object. Reviewed by Gregor Lingl.
* Don't show version in title.Georg Brandl2008-09-281-2/+3
|
* No downloads for RCs.Georg Brandl2008-09-281-0/+6
|
* note the 2to3 -d could be useful for other refactoringBenjamin Peterson2008-09-281-1/+3
|
* better grammarBenjamin Peterson2008-09-281-1/+1
|
* #1415508: Document two functionsAndrew M. Kuchling2008-09-281-6/+21
|
* #1579477: mention necessity to flush output before exec'ingAndrew M. Kuchling2008-09-281-3/+10
|
* clarify a few thingsBenjamin Peterson2008-09-271-7/+6
|
* #3510: future-proof textAndrew M. Kuchling2008-09-271-3/+4
|
* 2to3's api should be considered unstableBenjamin Peterson2008-09-271-0/+6
|
* Add a last bunch of itemsAndrew M. Kuchling2008-09-271-3/+36
|
* typos.Georg Brandl2008-09-261-3/+3
|
* add an 'other options' sectionBenjamin Peterson2008-09-261-0/+9
|
* add the beginnings of a C-API 2 -> 3 porting guideBenjamin Peterson2008-09-262-0/+209
|
* Improve wordingAndrew M. Kuchling2008-09-241-7/+7
|
* Indentation normalization.Georg Brandl2008-09-241-2/+2
|
* mention how to override boolean evaluationBenjamin Peterson2008-09-231-1/+2
|
* clean up docs for platform's linux_distribution and dist functionsBenjamin Peterson2008-09-221-16/+10
|
* Fill out download page.Georg Brandl2008-09-211-18/+24
|
* Add "dist" target.Georg Brandl2008-09-211-1/+41
|
* #3918: note that uniform() args can be swapped.Georg Brandl2008-09-211-1/+3
|
* Update readme and Makefile (web builder doesn't exist).Georg Brandl2008-09-212-11/+1
|
* #3914: add //= to the augmented assign operators.Georg Brandl2008-09-211-1/+1
|
* #3916: fixes for docs wrt. Windows directory layoutGeorg Brandl2008-09-211-4/+4
|
* #3912: document default for *places* arg.Georg Brandl2008-09-211-2/+4
|
* #3852: fix some select.kqueue and kevent docs.Georg Brandl2008-09-211-3/+3
|
* Correct information about the tarfile module.Lars Gustäbel2008-09-191-8/+8
|
* Improve docs for super().Raymond Hettinger2008-09-191-1/+18
|
* Fix for documentation bug. Fixes issue 3904.Josiah Carlson2008-09-191-2/+2
|
* document compileall command flagsBenjamin Peterson2008-09-171-2/+7
|
* Note sqlite3 version; move itemAndrew M. Kuchling2008-09-171-3/+7
|
* Remove comment about improvement: pystone is about the same, andAndrew M. Kuchling2008-09-171-3/+0
| | | | the improvements seem to be difficult to quantify
* Markup fixesAndrew M. Kuchling2008-09-171-7/+5
|
* usageSkip Montanaro2008-09-171-1/+1
|
* #3888: add some deprecated modules in whatsnew.Georg Brandl2008-09-171-1/+18
|
* be less wordyBenjamin Peterson2008-09-161-6/+6
|
* Fix typo.Georg Brandl2008-09-161-1/+1
|
* Rewrite item a bitAndrew M. Kuchling2008-09-151-3/+6
|