summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
* Minor fixupsRaymond Hettinger2003-09-162-2/+3
|
* SF bug #804113: Crypto terminology for crypto hash functionRaymond Hettinger2003-09-151-3/+4
| | | | | Noted that the SHA algorithm is really SHA-1. (Contributed by Ronald Rivest.)
* SF #662923Raymond Hettinger2003-09-122-9/+24
| | | | | | Add support for the iterator and mapping protocols. For Py2.3, this was done for shelve, dumbdbm and other mapping objects, but not for bsddb and dbhash which were inadvertently missed.
* SF bug #804280: fromkeys is not listed in indexRaymond Hettinger2003-09-121-4/+5
|
* fix markup bugletsFred Drake2003-09-111-22/+13
|
* - add version annotation for HIGHEST_PROTOCOLFred Drake2003-09-101-5/+5
| | | | - cleaned up some markup
* select.select() now accepts a sequence (as defined by PySequence_Fast()) forBrett Cannon2003-09-101-5/+5
| | | | | | its first three arguments. Closes RFE #798046 .
* mention new module doc display feature of pydoc in libref and NEWSSkip Montanaro2003-09-101-0/+5
|
* SF bug #803679: Missing section number in csv module documentationRaymond Hettinger2003-09-101-2/+2
|
* SF bug #803842: Wrong description of regexp concatenationRaymond Hettinger2003-09-101-4/+5
|
* SF bug #802302: Invalid documentation for dbhash.Raymond Hettinger2003-09-101-10/+9
| | | | The documentation severely departed for the actual implementation.
* SF patch #800899: Making "|" directive from REs a bit clearer.Raymond Hettinger2003-09-101-8/+7
|
* Fix typo.Raymond Hettinger2003-09-101-1/+1
|
* end-of-sentence punctuation comes *before* \footnote, not afterFred Drake2003-09-091-13/+13
|
* SF #801306: Bad RE in scanf exampleRaymond Hettinger2003-09-091-1/+1
|
* SF bug #560286: Add docs for 'basestring'Raymond Hettinger2003-09-091-0/+9
|
* Add an example to address a common question of how to split iterators.Raymond Hettinger2003-09-081-7/+20
|
* Fix spacing markup and other sundries.Raymond Hettinger2003-09-084-9/+9
|
* - reorganize sectionsFred Drake2003-09-061-137/+135
| | | | | - correct section level error (module references are always \section) - many markup revisions, including some minor rewordings
* SF bug 799191: fix markupRaymond Hettinger2003-09-061-1/+1
|
* SF bug 799367: grammar errorRaymond Hettinger2003-09-061-1/+1
|
* SF bug #801486: Markup error.Raymond Hettinger2003-09-061-2/+1
|
* markup updatesFred Drake2003-09-051-17/+17
|
* Patch #792338: Correct documentation for timetuple return type.Martin v. Löwis2003-09-041-7/+7
|
* Use de_DE in example, change message for unknown locale. Fixes #797447.Martin v. Löwis2003-09-031-1/+1
| | | | Will backport to 2.3.
* SF patch #798255: Document httplib.HTTPResponse.read "amt" argumentRaymond Hettinger2003-09-021-2/+2
| | | | (Contributed by Jeff Epler.)
* Minor typoRaymond Hettinger2003-09-011-1/+1
|
* SF patch #791153: inconsistency with implementation(logging)Raymond Hettinger2003-09-011-1/+1
| | | | (Contributed by George Yoshida.)
* SF bug #797853: Small problems with the csv module's documentationRaymond Hettinger2003-08-311-6/+6
|
* SF bug #732120:An extended definition of "non-overlapping" would save time.Raymond Hettinger2003-08-311-2/+3
| | | | | Clarified the meaning of non-overlapping in patterns with zero length matches.
* SF patch #797157: Bug 794658: os.chmod docs, stat constantsRaymond Hettinger2003-08-311-1/+2
| | | | | | (Contributed by Christos Georgiou.) Reference the symbol definitions in the stat module.
* Fix long option markup.Raymond Hettinger2003-08-311-7/+7
|
* SF patch #797180: Bug 792656: slicing explainedRaymond Hettinger2003-08-301-2/+3
|
* remove extra word occurance; reported to webmasterFred Drake2003-08-271-1/+1
|
* Make the derived tools amendable to cut and paste.Raymond Hettinger2003-08-251-54/+54
|
* Fix double word typos.Raymond Hettinger2003-08-2510-10/+10
|
* SF bug #793702: Section 13.1 HTMLParser documentation errorRaymond Hettinger2003-08-251-1/+1
| | | | The -- is special to TeX and was printing as just -.
* Update get_param() description to reflect changes to the docstring.Barry Warsaw2003-08-191-5/+8
|
* Improvements to set.py:Raymond Hettinger2003-08-171-3/+19
| | | | | | | | | | | | | | | | | | | * Relaxed the argument restrictions for non-operator methods. They now allow any iterable instead of requiring a set. This makes the module a little easier to use and paves the way for an efficient C implementation which can take better advantage of iterable arguments while screening out immutables. * Deprecated Set.update() because it now duplicates Set.union_update() * Adapted the tests and docs to include the above changes. * Added more test coverage including testing identities and checking to make sure non-restartable generators work as arguments. Will backport to Py2.3.1 so that the interface remains consistent across versions. The deprecation of update() will be changed to a FutureWarning.
* Incorporate documentation suggestions from feedback on comp.lang.python.Raymond Hettinger2003-08-161-55/+42
| | | | | | | | | | | | | | | * Positive wording for the description of why < and > and = can all be False. * Move to a three column table format that puts long method names side-by-side with their operator equivalents * Mention that KeyError can be raised by Set.pop() and Set.remove(). * Minor tweaks to the examples. Will backport as soon as Fred rebuilds the docs so I can confirm the tables formatted properly
* SF patch #787929: reflect the introduce of boolean type(libcfgparser.tex)Raymond Hettinger2003-08-141-4/+4
| | | | (Contributed by George Yoshida.)
* fix markupFred Drake2003-08-141-1/+1
|
* [Patch #739124] Add use_default_colors() to curses moduleAndrew M. Kuchling2003-08-131-0/+9
|
* SF patch#786531 'the the' typo. Contributed by George YoshidaRaymond Hettinger2003-08-129-11/+11
|
* add a statement identifying StringI and StringO objects.Skip Montanaro2003-08-111-1/+2
|
* SF bug #775836: change 0,1 to False,True in dict.has_key docRaymond Hettinger2003-08-081-1/+1
|
* Modified itertools.izip() to match the behavior of __builtin__.zip()Raymond Hettinger2003-08-081-1/+4
| | | | which can now take zero arguments.
* Improve docs:Raymond Hettinger2003-08-081-16/+13
| | | | | * Simplify the pure python examples * Add a quantify() example
* Removed deprecated functionsRaymond Hettinger2003-08-051-12/+0
|
* SF patch #782810: typo in libfuture.texRaymond Hettinger2003-08-051-1/+1
| | | | (Contributed by George Yoshida)