summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Describe undocumented third argument to touchline()Andrew M. Kuchling2007-04-111-2/+4
|
* preparing for 2.5.1c1Anthony Baxter2007-04-052-1/+2
|
* SF #1382213: Tutorial section 9.5.1 ignores MRO for new-style classesRaymond Hettinger2007-04-031-11/+20
|
* Add itemAndrew M. Kuchling2007-03-301-0/+11
|
* Patch #1489771: update syntax rules in Python Reference Manual.Žiga Seilnacht2007-03-244-42/+190
| | | | | | | | | Python 2.5 added support for explicit relative import statements and yield expressions, which were missing in the manual. Also fix grammar productions that used the names from the Grammar file, markup that broke the generated grammar.txt, and wrap some lines that broke the pdf output. (backport from rev. 54559)
* Patch #1686451: Fix return type for PySequence_{Count,Index,Fast_GET_SIZE}.Martin v. Löwis2007-03-231-3/+3
|
* Bug #1685704: use -m switch in timeit docs.Georg Brandl2007-03-221-1/+1
| | | | (backport from rev. 54524)
* Patch #1684834: document some utility C API functions.Georg Brandl2007-03-211-0/+91
| | | | (backport from rev. 54483)
* Add new exampleRaymond Hettinger2007-03-201-0/+3
|
* Backport docs for recv_into and recvfrom_into.Georg Brandl2007-03-182-2/+24
|
* RFE #1670167: fix in isinstance() docs.Georg Brandl2007-03-161-2/+3
| | | | (backport from rev. 54409)
* Patch #1680978: consistently use "alive" instead of "active" in theGeorg Brandl2007-03-151-24/+20
| | | | | thread lib doc. (backport from rev. 54392)
* doc update from HEAD. don't list "Unix, Windows" as a platform since thatGregory P. Smith2007-03-143-3/+0
| | | | covers everything now that Mac OS 9 isn't a popular issue.
* doc update from HEADGregory P. Smith2007-03-141-4/+4
|
* Patch #1679379: add documentation for fnmatch.translate().Georg Brandl2007-03-131-0/+31
| | | | (backport from rev. 54323)
* Typo fix.Georg Brandl2007-03-121-1/+1
| | | | (backport from rev. 54292)
* Fix #1676656: \em is different from \emph...Georg Brandl2007-03-081-1/+1
| | | | (backport from rev. 54220)
* Patch #1669331: clarify shutil.copyfileobj() behavior wrt. file position.Georg Brandl2007-03-071-1/+3
| | | | (backport from rev. 54202)
* Typo fix.Georg Brandl2007-03-071-1/+1
|
* Patch #1602128: clarify that richcmp methods can return NotImplementedGeorg Brandl2007-03-061-7/+9
| | | | | and should return True or False otherwise. (backport from rev. 54171)
* Patch #1671450: add a section about subclassing builtin types to theGeorg Brandl2007-03-062-1/+187
| | | | | "extending and embedding" tutorial. (backport from rev. 54150)
* Bugs #1668032, #1668036, #1669304: clarify behavior of PyMem_Realloc and ↵Georg Brandl2007-03-021-2/+5
| | | | | | _Resize. (backport from rev. 54088)
* Fix typo (noticed in Raymond's r54053 commit adding NamedTupleAndrew M. Kuchling2007-03-011-1/+1
|
* Markup fixAndrew M. Kuchling2007-02-261-2/+2
|
* Provide an example of defaultdict with non-zero constant factory function.Raymond Hettinger2007-02-191-8/+12
|
* Add missing \versionadded.Georg Brandl2007-02-151-0/+4
| | | | (backport from rev. 53787)
* Patch #1494140: Add documentation for the new struct.Struct object.Georg Brandl2007-02-151-0/+55
| | | | (backport from rev. 53785)
* Make functools.wraps() docs a bit clearer.Georg Brandl2007-02-151-6/+11
| | | | (backport from rev. 53783)
* Bug #1658794: Remove extraneous 'this'.Martin v. Löwis2007-02-131-1/+1
|
* Bug #1656581: Point out that external file objects are supposed to beLars Gustäbel2007-02-121-2/+3
| | | | at position 0. (backport from rev. 53752)
* Bug #1656078: typo in in profile docs.Georg Brandl2007-02-091-1/+1
| | | | (backport from rev. 53697)
* Update broken link.Martin v. Löwis2007-02-091-1/+1
|
* SF: 1397711 Set docs conflated immutable and hashableRaymond Hettinger2007-02-071-1/+1
|
* Bug #1648191: typo in docs.Georg Brandl2007-01-301-1/+1
| | | | (backport from rev. 53603)
* fix typo (extraneous ")")Fred Drake2007-01-261-1/+1
|
* Strengthen warning about using lock()Andrew M. Kuchling2007-01-241-8/+12
|
* Update version of What's NewAndrew M. Kuchling2007-01-221-17/+27
|
* SF# 1635892: Fix docs for betavariate's input parameters .Raymond Hettinger2007-01-191-1/+1
|
* SF #1635217, Fix unbalanced parenNeal Norwitz2007-01-191-1/+1
|
* Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs.Georg Brandl2007-01-171-2/+2
| | | | (backport from rev. 53477)
* Bug #1637967: missing //= operator in list.Georg Brandl2007-01-171-2/+2
| | | | (backport from rev. 53475)
* [Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and ↵Andrew M. Kuchling2007-01-171-25/+57
| | | | warn user to lock/unlock mailboxes when modifying them
* - Make the documentation match the code and the docstringMatthias Klose2007-01-111-1/+1
|
* Added relativeCreated to Formatter doc (has been in the system for a long ↵Vinay Sajip2007-01-081-4/+9
| | | | | | | time - was unaccountably left out of the docs and not noticed until now). Documentation clarified to mention optional parameters. Documentation omitted the additional parameter to LogRecord.__init__ which was added in 2.5. (See SF #1569622).
* update to (c) years to include 2007Anthony Baxter2007-01-061-1/+1
|
* typo fixGregory P. Smith2007-01-051-1/+1
|
* support linking the _bsddb extension module against BerkeleyDB 4.5Gregory P. Smith2007-01-051-1/+1
| | | | [backport of r53252]
* SF #1627373, fix typo in CarbonEvt.Neal Norwitz2007-01-041-1/+1
|
* Remove a stray (old) macro name left around (I guess)Neal Norwitz2006-12-281-2/+0
|
* Fix wrong markup of an argument in a method signature.Thomas Heller2006-12-211-1/+1
| | | | Backported from trunk.