summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* [Bug #1613651] Document socket.recv_into, socket.recvfrom_intoAndrew M. Kuchling2006-12-191-2/+23
| | | | | | | | | Also, the text for recvfrom told you to read recv() for an explanation of the 'flags' argument, but recv() just pointed you at the man page. Copied the man-page text to recvfrom(), recvfrom_into, recv_into to avoid the pointless redirection. I don't have LaTeX on this machine; hope my markup is OK.
* Fix markupAndrew M. Kuchling2006-12-181-2/+2
|
* Describe new methods in Queue moduleAndrew M. Kuchling2006-12-181-0/+7
|
* [Bug #1616726] Fix description of generator.close(); if you raise some ↵Andrew M. Kuchling2006-12-181-7/+8
| | | | random exception, the exception is raised and doesn't trigger a RuntimeError
* Bump versionAndrew M. Kuchling2006-12-181-1/+1
|
* [Bug #1618083] Add missing word; make a few grammar fixesAndrew M. Kuchling2006-12-181-4/+4
|
* Note that guard_warnings_filter was added in 2.6George Yoshida2006-12-141-0/+2
|
* Add test.test_support.guard_warnings_filter . This function returns a contextBrett Cannon2006-12-131-0/+4
| | | | | manager that protects warnings.filter from being modified once the context is exited.
* Fix a typoNeal Norwitz2006-12-111-1/+1
|
* - Fix the build of the library reference in info format.Matthias Klose2006-12-092-14/+33
|
* RFE #1592899: mention string.maketrans() in docs for str.translate,Georg Brandl2006-12-072-1/+4
| | | | remove reference to the old regex module in the former's doc.
* Fix pickle doc typoGeorge Yoshida2006-12-051-1/+1
| | | | Patch #1608758
* fix a versionchanged tagGeorge Yoshida2006-12-041-1/+1
|
* Patch #1371075: Make ConfigParser accept optional dict typeMartin v. Löwis2006-12-031-3/+12
| | | | for ordering, sorting, etc.
* Bug #1603789: grammatical error in Tkinter docs.Georg Brandl2006-11-271-1/+1
|
* Fix and/add typoRaymond Hettinger2006-11-231-2/+2
|
* Bug #1601630: little improvement to getopt docsGeorg Brandl2006-11-231-3/+6
|
* Fix SF #1599879, socket.gethostname should ref getfqdn directly.Neal Norwitz2006-11-211-2/+2
|
* Further markup fix.Georg Brandl2006-11-201-1/+1
|
* markup fixGeorge Yoshida2006-11-201-1/+1
|
* Patch #1070046: Marshal new-style objects like InstanceTypeMartin v. Löwis2006-11-191-1/+8
| | | | in xmlrpclib.
* Bug #1597824: return the registered function from atexit.register()Georg Brandl2006-11-161-0/+16
| | | | to facilitate usage as a decorator.
* Bug #1597576: mention that the new base64 api has been introduced in py2.4.Georg Brandl2006-11-161-1/+1
|
* Bug #1067760: Deprecate passing floats to file.seek.Martin v. Löwis2006-11-121-0/+1
|
* Patch #1065257: Support passing open files as body inMartin v. Löwis2006-11-121-0/+5
| | | | HTTPConnection.request().
* Bug #1594758: wording improvement for dict.update() docs.Georg Brandl2006-11-111-1/+2
|
* Bug #1594742: wrong word in stringobject doc.Georg Brandl2006-11-111-1/+1
|
* [Feature request #1542920] Link to wsgi.orgAndrew M. Kuchling2006-11-101-1/+2
|
* More editsAndrew M. Kuchling2006-11-081-10/+26
|
* Add table of contents; this required fixing a few headings. Some more ↵Andrew M. Kuchling2006-11-081-17/+21
| | | | smalle edits.
* Add section on operator module; make a few editsAndrew M. Kuchling2006-11-081-8/+38
|
* Add section on the functional moduleAndrew M. Kuchling2006-11-081-1/+144
|
* Bug #1592533: rename variable in heapq doc example, to avoid shadowingGeorg Brandl2006-11-081-4/+4
| | | | "sorted".
* Patch #1592072: fix docs for return value of PyErr_CheckSignals.Georg Brandl2006-11-081-1/+1
|
* Add missing wordAndrew M. Kuchling2006-11-071-1/+1
|
* Fix grammatical error as well.Thomas Heller2006-11-071-2/+2
| | | | Will backport to release25-maint.
* Fix markup.Thomas Heller2006-11-071-4/+2
| | | | Will backport to release25-maint.
* note that user can control directory location even if default dir is usedSkip Montanaro2006-11-061-1/+6
|
* Update linkAndrew M. Kuchling2006-11-051-1/+1
|
* Fix a code example by adding a missing import.Thomas Heller2006-11-021-1/+1
| | | | | | Fixes #1557890. Will backport to release25-maint.
* Replace the XXX marker in the 'Arrays and pointers' reference manualThomas Heller2006-11-021-1/+2
| | | | | | section with a link to the tutorial sections. Will backport to release25-maint.
* Added relativeCreated to Formatter doc (has been in the system for a long ↵Vinay Sajip2006-10-311-0/+3
| | | | time - was unaccountably left out of the docs and not noticed until now).
* From SF 1557890, fix problem of using wrong type in example.Neal Norwitz2006-10-281-1/+1
| | | | Will backport.
* Fix nth() itertool recipe.Georg Brandl2006-10-281-2/+2
|
* Point users to the subprocess module in the docs for os.system, os.spawn*, ↵Andrew M. Kuchling2006-10-274-9/+38
| | | | os.popen2, and the popen2 and commands modules
* [Bug #1562583] Mention the set_reuse_addr() methodAndrew M. Kuchling2006-10-271-3/+5
|
* [Bug #1583946] Reword description of server and issuerAndrew M. Kuchling2006-10-271-5/+6
|
* [Bug #1585690] Note that line_num was added in Python 2.5Andrew M. Kuchling2006-10-271-0/+1
|
* Some wording changes and markup fixesAndrew M. Kuchling2006-10-271-6/+6
|
* Add itemAndrew M. Kuchling2006-10-271-1/+4
|