summaryrefslogtreecommitdiffstats
path: root/Doc/library
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. ........
* Deprecate contextlib.nested(). The with-statement now provides this ↵Raymond Hettinger2009-05-281-0/+2
| | | | functionality directly.
* Fix field name conflicts for named tuples.Raymond Hettinger2009-05-271-6/+6
|
* 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-255-20/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 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
|
* 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. ........
* 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
|
* 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-088-15/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. ........
* Issue #3382. float 'F' formatting no longer maps to 'f'. This only affects ↵Eric Smith2009-05-061-1/+2
| | | | nan and inf.
* 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.
* Improved wording.Eric Smith2009-05-051-4/+4
|
* Documentation for Issue #5920.Eric Smith2009-05-051-1/+4
|
* 2.7 -> 3.1 versionchanges.Georg Brandl2009-05-057-18/+6
|
* 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
|
* 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-041-8/+20
|
* 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. ........
* version added 3.1Gregory P. Smith2009-05-041-1/+1
|
* documentation clarification. mention bytes.Gregory P. Smith2009-05-041-3/+4
|
* Merge refactoring I did when committing r72267 to trunk into theGregory P. Smith2009-05-041-0/+6
| | | | already committed issue4751 support in py3k r68411.
* Issue #3672: Reject surrogates in utf-8 codec; add surrogates errorMartin v. Löwis2009-05-021-0/+12
| | | | handler.
* port simplejson upgrade from the trunk #4136Benjamin Peterson2009-05-021-43/+20
| | | | | | json also now works only with unicode strings Patch by Antoine Pitrou; updated by me
* Merged revisions 72183-72184 via svnmerge fromGregory P. Smith2009-05-022-77/+80
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72183 | georg.brandl | 2009-05-01 14:28:35 -0700 (Fri, 01 May 2009) | 2 lines Review ipaddr docs and add them in the TOC under "Internet protocols". ........ r72184 | georg.brandl | 2009-05-01 14:30:25 -0700 (Fri, 01 May 2009) | 1 line Fix directive name. ........