summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Generator's constructor: The documentation was incorrect regarding howBarry Warsaw2003-11-191-3/+2
| | | | | | header wrapping gets done when maxheaderlen <> 0. The header really gets wrapped via the email.Header.Header class, which has a more sophisticated algorithm than just splitting on semi-colons.
* Patch #843088: Fix typos. Backported to 2.3.Martin v. Löwis2003-11-182-3/+3
|
* Documentation for set objects.Raymond Hettinger2003-11-181-0/+37
|
* * Migrate set() and frozenset() from the sandbox.Raymond Hettinger2003-11-161-0/+19
| | | | | | | | * Install the unittests, docs, newsitem, include file, and makefile update. * Exercise the new functions whereever sets.py was being used. Includes the docs for libfuncs.tex. Separate docs for the types are forthcoming.
* Fix typoRaymond Hettinger2003-11-161-1/+1
|
* Various editsAndrew M. Kuchling2003-11-131-7/+9
|
* remove "support" for BerkeleyDB 3.1, it hasn't worked for a long timeGregory P. Smith2003-11-131-2/+2
|
* Fix typoRaymond Hettinger2003-11-121-2/+2
|
* Explain the advantages of reversed.Raymond Hettinger2003-11-121-3/+6
|
* Present each feature in terms of what makes it useful or desirable.Raymond Hettinger2003-11-121-24/+68
|
* Improve the implementation of itertools.tee().Raymond Hettinger2003-11-121-4/+12
| | | | | | | | | | | Formerly, underlying queue was implemented in terms of two lists. The new queue is a series of singly-linked fixed length lists. The new implementation runs much faster, supports multi-way tees, and allows tees of tees without additional memory costs. The root ideas for this structure were contributed by Andrew Koenig and Guido van Rossum.
* fix typo in markupFred Drake2003-11-101-1/+1
|
* fix use of undefined markupFred Drake2003-11-101-1/+1
|
* add missing "if"Fred Drake2003-11-101-1/+1
|
* Mention that getsid is new in 2.4.Martin v. Löwis2003-11-101-1/+1
|
* Patch #798297: Add IMAP THREAD command.Martin v. Löwis2003-11-101-0/+22
|
* Patch #839038: Add getsid(2).Martin v. Löwis2003-11-101-0/+6
|
* clarified (in the 5.14 summary) that tests and comparisons all chain,Alex Martelli2003-11-091-3/+3
| | | | | added a specific \ref to 5.9 in lieu of previous vague "see above". (same as commit of Sun Nov 2 to the release23-maint branch)
* Add docs for readmodule_ex and its function-descriptors, fixingAlex Martelli2003-11-091-5/+42
| | | | | sf bug#812818. (same as commit of Sun Nov 2 to the release23-maint branch)
* Avoid giving advice that's bad for security, as per SF bug #823515Alex Martelli2003-11-091-1/+3
| | | | (same as commit of Sun Nov 2 to the release23-maint branch)
* Document Py_RETURN_NONE.Brett Cannon2003-11-091-0/+4
|
* Add 'see also' section pointing to the PEPAndrew M. Kuchling2003-11-081-0/+5
|
* Add some recent changesAndrew M. Kuchling2003-11-081-1/+46
|
* Fix the problem addressed by patchMichael W. Hudson2003-11-071-1/+1
| | | | | | [ 819012 ] Fix for former/latter confusion in Extending documentation although not by using supplied patch.
* Add a new looping idiomRaymond Hettinger2003-11-071-0/+15
|
* Patch #837322: Clarify owning, borrowing, stealing. Backported to 2.3.Martin v. Löwis2003-11-061-6/+10
|
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-0/+8
|
* Add traceback.format_exc().Neil Schemenauer2003-11-051-0/+5
|
* SF patch #834444: add versionadd to new functionsRaymond Hettinger2003-11-021-0/+2
| | | | (Contributed by George Yoshida.)
* [Bug #817178] Fix incorrect arguments in example, noted by Terry ReedyAndrew M. Kuchling2003-10-311-1/+1
|
* Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2.Martin v. Löwis2003-10-311-1/+1
|
* Patch #531629: Add multicall support.Martin v. Löwis2003-10-311-0/+29
|
* Patch #: Add POP3 over SSL support.Martin v. Löwis2003-10-311-2/+18
|
* Fix typo.Raymond Hettinger2003-10-301-1/+1
|
* Minor grammatical fix.Brett Cannon2003-10-301-1/+1
|
* Add list.sorted() classmethod.Raymond Hettinger2003-10-291-4/+11
|
* SF bug #827902: ctime is not creation timeRaymond Hettinger2003-10-291-2/+3
| | | | New fix for this bug recognizes differing definitions on various systems.
* Documented gc.get_referrers() as dangerous.Armin Rigo2003-10-281-0/+5
| | | | SF bug 793822
* SF bug #827902: ctime is not creation timeRaymond Hettinger2003-10-271-1/+2
| | | | Document the correct definition of os.path.getctime()
* Fix inaccuracy: all entities from XHTML 1.0 are supported (according to text ↵Andrew M. Kuchling2003-10-271-4/+4
| | | | further down in this file)
* Document that varlist can be NULL.Raymond Hettinger2003-10-261-2/+4
|
* Replace the window() example with pairwise() which demonstrates tee().Raymond Hettinger2003-10-261-10/+4
|
* SF #829941, update tutorial, built-in types can be base classes since 2.2Neal Norwitz2003-10-251-2/+2
|
* Added itertools.tee()Raymond Hettinger2003-10-241-17/+39
| | | | | | It works like the pure python verion except: * it stops storing data after of the iterators gets deallocated * the data queue is implemented with two stacks instead of one dictionary.
* Record an item I missed and bump the version number. [2.3 bugfix candidate.]Andrew M. Kuchling2003-10-231-1/+6
|
* - add "Why is Python installed on my computer?" as a documentation FAQFred Drake2003-10-231-3/+15
| | | | | since this gets asked at the docs at python.org address a lot - fix some minor style violations and inconsistencies
* [Bug #809174] loads() and dumps() not documentedAndrew M. Kuchling2003-10-221-0/+24
|
* Avoid confusing name for the 3rd argument to str.replace().Fred Drake2003-10-221-3/+3
| | | | This closes SF bug #827260.
* Don't make promises about about the visibility of the induction variable.Raymond Hettinger2003-10-211-12/+0
|
* - make this section formatFred Drake2003-10-211-100/+98
| | | | | | | - start cleaning up the markup for consistency - comment out the reference to a MS KnowledgeBase article that doesn't seem to be present at msdn.microsoft.com; hopefully someone can point out an alternate source for the relevant information