summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Convert all "i" docs to new style optional args.Georg Brandl2009-06-019-55/+50
|
* Typo fix; constant name is uppercaseAndrew M. Kuchling2009-06-011-1/+1
|
* #5675 followup: bytearray also has translate and maketrans.Georg Brandl2009-05-311-0/+2
|
* Merged revisions 73077 via svnmerge fromR. David Murray2009-05-311-0/+5
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73077 | r.david.murray | 2009-05-31 15:15:57 -0400 (Sun, 31 May 2009) | 4 lines Issue 3848: document the fact that epoll register raises an IOError if an fd is registered twice, and add some additional epoll tests. Patch by Christian Heimes. ........
* #6155: remove usage of cPickle.Georg Brandl2009-05-311-2/+2
|
* Merged revisions 73060 via svnmerge fromGregory P. Smith2009-05-301-2/+90
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73060 | gregory.p.smith | 2009-05-30 12:58:11 -0700 (Sat, 30 May 2009) | 2 lines Add more examples to the ipaddr documentation. ........
* Issue #6012: Add cleanup support to O& argument parsing.Martin v. Löwis2009-05-292-5/+28
|
* Issue 5150: Add rstrip() menu option to IDLE.Raymond Hettinger2009-05-291-0/+8
|
* fix typoRaymond Hettinger2009-05-281-1/+1
|
* Deprecate contextlib.nested(). The with-statement now provides this ↵Raymond Hettinger2009-05-282-0/+5
| | | | functionality directly.
* Merged revisions 72971 via svnmerge fromBenjamin Peterson2009-05-281-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72971 | benjamin.peterson | 2009-05-27 22:02:13 -0500 (Wed, 27 May 2009) | 1 line switch library reference and language reference ........
* Add attribution for patch co-author.Georg Brandl2009-05-271-1/+1
|
* Update whatsnew for compound with-statements.Raymond Hettinger2009-05-271-0/+11
|
* Fix field name conflicts for named tuples.Raymond Hettinger2009-05-271-6/+6
|
* #6115: remove entries for the already removed PyNumber_Divide and ↵Georg Brandl2009-05-261-13/+0
| | | | PyNumber_InPlaceDivide from the header and the docs.
* Merged revisions 72932 via svnmerge fromGeorg Brandl2009-05-261-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72932 | georg.brandl | 2009-05-26 09:50:23 +0200 (Di, 26 Mai 2009) | 1 line #6112: list.remove raises ValueError, not RuntimeError. ........
* Manual merge of r72710: use table of flags for dbm.open description.Georg Brandl2009-05-251-5/+17
|
* Merged revisions 72661,72675-72677,72679,72712,72801,72820 via svnmerge fromGeorg Brandl2009-05-259-31/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72661 | georg.brandl | 2009-05-15 10:03:03 +0200 (Fr, 15 Mai 2009) | 1 line Fix example output for doctest-like demos. ........ r72675 | georg.brandl | 2009-05-16 13:13:21 +0200 (Sa, 16 Mai 2009) | 1 line #6034: clarify __reversed__ doc. ........ r72676 | georg.brandl | 2009-05-16 13:14:46 +0200 (Sa, 16 Mai 2009) | 1 line #6025: fix signature of parse(). ........ r72677 | georg.brandl | 2009-05-16 13:18:55 +0200 (Sa, 16 Mai 2009) | 1 line #6009: undocument default argument of Option as deprecated. ........ r72679 | georg.brandl | 2009-05-16 13:24:41 +0200 (Sa, 16 Mai 2009) | 1 line Fix about and bugs pages to match real workflow. ........ r72712 | georg.brandl | 2009-05-17 10:55:00 +0200 (So, 17 Mai 2009) | 1 line #5935: mention that BROWSER is looked for in PATH. ........ r72801 | georg.brandl | 2009-05-20 20:31:14 +0200 (Mi, 20 Mai 2009) | 1 line #6055: refer to "sqlite3" consistently. ........ r72820 | georg.brandl | 2009-05-22 09:23:32 +0200 (Fr, 22 Mai 2009) | 1 line Use raise X(y). ........
* Merged revisions 72924 via svnmerge fromGeorg Brandl2009-05-251-2/+18
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72924 | georg.brandl | 2009-05-25 23:02:56 +0200 (Mo, 25 Mai 2009) | 6 lines Allow multiple context managers in one with statement, as proposed in http://codereview.appspot.com/53094 and accepted by Guido. The construct is transformed into multiple With AST nodes so that there should be no problems with the semantics. ........
* Merged revisions 72905 via svnmerge fromBenjamin Peterson2009-05-251-21/+5
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72905 | benjamin.peterson | 2009-05-24 19:48:58 -0500 (Sun, 24 May 2009) | 4 lines make class skipping decorators the same as skipping every test of the class This removes ClassTestSuite and a good bit of hacks. ........
* #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. ........