summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* #6079: use 3k except syntax in examples.Georg Brandl2009-05-221-2/+2
|
* Recorded merge of revisions 72830 via svnmerge fromGeorg Brandl2009-05-222-6/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72830 | georg.brandl | 2009-05-22 12:40:00 +0200 (Fr, 22 Mai 2009) | 1 line #6086: fix spelling and use a better exception to catch. ........
* Merged revisions 72817 via svnmerge fromPhilip Jenvey2009-05-221-0/+10
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72817 | philip.jenvey | 2009-05-21 22:35:32 -0700 (Thu, 21 May 2009) | 4 lines don't use subprocess.call with PIPEs as the child can fill the pipe buf and deadlock. add a warning to subprocess docs about this, similar to Popen.wait's. refs http://bugs.jython.org/issue1351 ........
* Fix-up moving average example.Raymond Hettinger2009-05-221-3/+2
|
* Note that ordered dictionaries work with reversed().Raymond Hettinger2009-05-191-0/+3
|
* More conversion to new-style optional args.Georg Brandl2009-05-1719-129/+120
|
* Remove surplus empty lines and convert more files to new optional arg style.Georg Brandl2009-05-1739-74/+38
|
* Use new optional argument style in email docs.Georg Brandl2009-05-179-86/+72
|
* Recorded merge of revisions 72708 via svnmerge fromGeorg Brandl2009-05-171-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72708 | georg.brandl | 2009-05-17 10:24:29 +0200 (So, 17 Mai 2009) | 1 line #6017: better document behavior of dictiterators when the dict is changed. ........
* Merged revisions 72703 via svnmerge fromGeorg Brandl2009-05-171-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72703 | georg.brandl | 2009-05-17 10:10:27 +0200 (So, 17 Mai 2009) | 1 line part of #4144: fix exception message in console session. ........
* #4144: fix output of console sessions.Georg Brandl2009-05-171-2/+2
|
* More updates.Raymond Hettinger2009-05-151-4/+18
|
* Add examples for ipaddr.Raymond Hettinger2009-05-151-1/+32
|
* Update whatsnew for imaplib changes. Move importlib work to end of section.Raymond Hettinger2009-05-151-13/+14
|
* this statement isn't actually trueBenjamin Peterson2009-05-141-3/+1
|
* Bring whatsnew up-to-date as of May 14th.Raymond Hettinger2009-05-141-0/+14
|
* Update whatsnew for NEWS entries through May 5th.Raymond Hettinger2009-05-141-6/+14
|
* Fix error in 2-to-3 translation of docs.Raymond Hettinger2009-05-141-1/+1
|
* Suggest how to use compare_networks() with a modern Python.Raymond Hettinger2009-05-141-0/+10
|
* typoTarek Ziadé2009-05-141-1/+1
|
* typoBenjamin Peterson2009-05-131-1/+1
|
* two editsBenjamin Peterson2009-05-121-2/+2
|
* add example functionBenjamin Peterson2009-05-121-1/+7
|
* Examples correction in urllib2 howto. Michael FoordMichael Foord2009-05-121-5/+5
|
* detach() is a nifty trick for making std* binaryBenjamin Peterson2009-05-121-5/+4
|
* Merged revisions 72572 via svnmerge fromR. David Murray2009-05-121-7/+11
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72572 | r.david.murray | 2009-05-11 21:36:57 -0400 (Mon, 11 May 2009) | 3 lines Make it clear up front that shelve only records changes when objects are assigned back to it when writeback is False. ........
* Rename utf8b error handler to surrogateescape.Martin v. Löwis2009-05-102-4/+4
|
* Rename the surrogates error handler to surrogatepass.Martin v. Löwis2009-05-101-7/+7
|
* Merged revisions ↵Benjamin Peterson2009-05-0812-42/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 70768,71657,71721,71729,71794,71976,72036-72037,72079,72085,72131-72134,72191,72197-72198,72219,72221,72225,72303,72434,72467,72476 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70768 | andrew.kuchling | 2009-03-30 17:29:15 -0500 (Mon, 30 Mar 2009) | 1 line Typo fixes ........ r71657 | vinay.sajip | 2009-04-16 14:07:37 -0500 (Thu, 16 Apr 2009) | 1 line Issue #5768: Change to Unicode output logic and test case for same. ........ r71721 | benjamin.peterson | 2009-04-18 14:26:19 -0500 (Sat, 18 Apr 2009) | 1 line fix a few nits in unittest.py #5771 ........ r71729 | benjamin.peterson | 2009-04-18 16:03:10 -0500 (Sat, 18 Apr 2009) | 1 line move test to a more appropiate one ........ r71794 | vinay.sajip | 2009-04-22 07:10:47 -0500 (Wed, 22 Apr 2009) | 2 lines Issue #5170: Fixed regression caused when fixing #5768. ........ r71976 | mark.dickinson | 2009-04-26 14:54:55 -0500 (Sun, 26 Apr 2009) | 2 lines Fix typo in function name ........ r72036 | georg.brandl | 2009-04-27 12:04:23 -0500 (Mon, 27 Apr 2009) | 1 line #5848: small unittest doc patch. ........ r72037 | georg.brandl | 2009-04-27 12:09:53 -0500 (Mon, 27 Apr 2009) | 1 line #5840: dont claim we dont support TLS. ........ r72079 | r.david.murray | 2009-04-28 14:02:55 -0500 (Tue, 28 Apr 2009) | 2 lines Remove spurious 'u'. ........ r72085 | georg.brandl | 2009-04-28 16:48:35 -0500 (Tue, 28 Apr 2009) | 1 line Make the doctests in the docs pass, except for those in the turtle module. ........ r72131 | benjamin.peterson | 2009-04-29 17:43:35 -0500 (Wed, 29 Apr 2009) | 1 line fix test_shutil on ZFS #5676 ........ r72132 | georg.brandl | 2009-04-29 17:44:07 -0500 (Wed, 29 Apr 2009) | 1 line #5878: fix repr of re object. ........ r72133 | benjamin.peterson | 2009-04-29 17:44:15 -0500 (Wed, 29 Apr 2009) | 1 line make sure mode is removable while cleaning up test droppings ........ r72134 | benjamin.peterson | 2009-04-29 19:06:33 -0500 (Wed, 29 Apr 2009) | 1 line make sure to close file ........ r72191 | michael.foord | 2009-05-02 06:43:06 -0500 (Sat, 02 May 2009) | 9 lines Adds an exit parameter to unittest.main(). If False main no longer calls sys.exit. Closes issue 3379. Michael Foord ........ r72197 | benjamin.peterson | 2009-05-02 11:24:37 -0500 (Sat, 02 May 2009) | 1 line don't let sys.argv be used in the tests ........ r72198 | andrew.kuchling | 2009-05-02 12:12:15 -0500 (Sat, 02 May 2009) | 1 line Add items ........ r72219 | michael.foord | 2009-05-02 15:15:05 -0500 (Sat, 02 May 2009) | 8 lines Add addCleanup and doCleanups to unittest.TestCase. Closes issue 5679. Michael Foord ........ r72221 | benjamin.peterson | 2009-05-02 15:26:53 -0500 (Sat, 02 May 2009) | 1 line add myself ........ r72225 | michael.foord | 2009-05-02 17:43:34 -0500 (Sat, 02 May 2009) | 1 line ........ r72303 | benjamin.peterson | 2009-05-04 19:55:24 -0500 (Mon, 04 May 2009) | 1 line using sys._getframe(x), where x > 0 doesnt' work on IronPython ........ r72434 | r.david.murray | 2009-05-07 13:09:58 -0500 (Thu, 07 May 2009) | 2 lines Pre-opened test file needs to be opened in binary mode. ........ r72467 | georg.brandl | 2009-05-08 07:17:34 -0500 (Fri, 08 May 2009) | 1 line Fix name. ........ r72476 | thomas.heller | 2009-05-08 15:09:40 -0500 (Fri, 08 May 2009) | 4 lines Add a file that contains diffs between offical libffi files and the files in this repository. Should make it easier to merge new libffi versions. ........
* Merged revisions 72439 via svnmerge fromEric Smith2009-05-071-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72439 | eric.smith | 2009-05-07 15:36:09 -0400 (Thu, 07 May 2009) | 1 line Fixed wording for formatting integers: precision is not allowed. ........
* Merged revisions 72415 via svnmerge fromAndrew M. Kuchling2009-05-071-2/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72415 | andrew.kuchling | 2009-05-06 18:54:19 -0400 (Wed, 06 May 2009) | 1 line Remove two dead links ........
* Issue #3382. float 'F' formatting no longer maps to 'f'. This only affects ↵Eric Smith2009-05-061-1/+2
| | | | nan and inf.
* #5946: fix speling.Georg Brandl2009-05-061-3/+3
|
* Issue #5799: ntpath (ie, os.path on Windows) fully supports UNC pathnames.Mark Hammond2009-05-061-5/+14
| | | | By Larry Hastings, reviewed eric.smith and mark.hammond.
* Small style edits.Georg Brandl2009-05-051-18/+16
|
* editsBenjamin Peterson2009-05-051-74/+58
|
* add a replacement API for PyCObject, PyCapsule #5630Benjamin Peterson2009-05-055-27/+248
| | | | | | All stdlib modules with C-APIs now use this. Patch by Larry Hastings
* Improved wording.Eric Smith2009-05-051-4/+4
|
* Documentation for Issue #5920.Eric Smith2009-05-051-1/+4
|
* Issue #5920: Changed format.__float__ and complex.__float__ to use a ↵Eric Smith2009-05-051-4/+4
| | | | precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson.
* 2.7 -> 3.1 versionchanges.Georg Brandl2009-05-058-20/+7
|
* Merged revisions 72322 via svnmerge fromGeorg Brandl2009-05-051-4/+49
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72322 | georg.brandl | 2009-05-05 10:54:11 +0200 (Di, 05 Mai 2009) | 1 line #5142: add module skipping feature to pdb. ........
* #5923: update turtle module to version 1.1.Georg Brandl2009-05-051-4/+183
|
* #5938: use PyVarObject_HEAD_INIT instead of PyObject_HEAD_INIT in noddy ↵Georg Brandl2009-05-054-4/+4
| | | | examples.
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-052-11/+31
| | | | System Character Interfaces.
* Merged revisions 72149 via svnmerge fromR. David Murray2009-05-051-349/+684
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72149 | r.david.murray | 2009-04-30 08:42:32 -0400 (Thu, 30 Apr 2009) | 4 lines Make the turtle.rst doctests pass. I have a feeling there should be more cleanup, but I don't know now to kill turtles. Especially unexpected ones... ;) ........
* Add missing documentation for bytes.decode().Georg Brandl2009-05-042-9/+21
|
* Merged revisions 72292 via svnmerge fromGeorg Brandl2009-05-041-2/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72292 | georg.brandl | 2009-05-04 22:49:17 +0200 (Mo, 04 Mai 2009) | 1 line #5916, 5917: small socket doc improvements. ........
* Merged revisions 72290 via svnmerge fromGeorg Brandl2009-05-041-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72290 | georg.brandl | 2009-05-04 22:45:13 +0200 (Mo, 04 Mai 2009) | 1 line #5927, 5928: typos. ........
* Merged revisions 72288 via svnmerge fromGeorg Brandl2009-05-041-1/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72288 | georg.brandl | 2009-05-04 22:42:08 +0200 (Mo, 04 Mai 2009) | 1 line #5925: fix highlighting of keyword table. ........