summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1519566: Remove unused _tofill member.Martin v. Löwis2006-07-101-1/+3
| | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes.
* After approval from Anthony, merge the tim-current_framesTim Peters2006-07-101-6/+23
| | | | | | branch into the trunk. This adds a new sys._current_frames() function, which returns a dict mapping thread id to topmost thread stack frame.
* preparing for 2.5b2Anthony Baxter2006-07-101-1/+1
|
* Introduce DISTUTILS_USE_SDK as a flag to determine whether theMartin v. Löwis2006-07-101-3/+14
| | | | SDK environment should be used. Fixes #1508010.
* Patch #1504046: Add documentation for xml.etree.Neal Norwitz2006-07-103-0/+369
| | | | | | /F wrote the text docs, Englebert Gruber massaged it to latex and I did some more massaging to try and improve the consistency and fix some name mismatches between the declaration and text.
* Fix RFC number.Georg Brandl2006-07-071-1/+1
|
* Document the correct return type of PyLong_AsUnsignedLongLongMask.Thomas Heller2006-07-061-1/+1
|
* ImportWarning is now silent by defaultAndrew M. Kuchling2006-07-061-12/+5
|
* Cover ImportWarning, PendingDeprecationWarning and simplefilter() in the ↵Nick Coghlan2006-07-061-5/+33
| | | | warnings module docs
* Update the tutorial section on relative importsNick Coghlan2006-07-061-8/+25
|
* Revert the __module_name__ changes made in rev 47142. We'll revisit this in ↵Nick Coghlan2006-07-061-13/+8
| | | | Python 2.6
* Document the changes in svn revision 47263, from patch #1517790.Thomas Heller2006-07-061-0/+6
|
* Document the Struture and Union constructors.Thomas Heller2006-07-061-0/+7
|
* no need to elaborate "string".Georg Brandl2006-07-051-1/+1
|
* Patch #1517490: fix glitches in filter() docs.Georg Brandl2006-07-051-4/+4
|
* [Bug #1511911] Clarify description of optional arguments to sorted()Andrew M. Kuchling2006-07-031-2/+24
| | | | | by improving the xref to the section on lists, and by copying the explanations of the arguments (with a slight modification).
* [Bug #1515932] Clarify description of slice assignmentAndrew M. Kuchling2006-07-031-1/+2
|
* Document functions added in 2.3 and 2.5.Martin v. Löwis2006-07-031-4/+75
|
* - consistency nit: always include "()" in \function and \methodFred Drake2006-06-301-8/+8
| | | | | (*should* be done by the presentation, but that requires changes all over) - avoid spreading the __name meme
* Document decorator usage of property.Georg Brandl2006-06-301-1/+16
|
* add string methods to indexSkip Montanaro2006-06-291-0/+1
|
* [Bug #1508766] Add docs for uuid module; this puts the module in the ↵Andrew M. Kuchling2006-06-281-0/+1
| | | | 'Internet Protocols' section. Arguably this module could also have gone in the chapters on strings or encodings, maybe even the crypto chapter. Fred, please move if you see fit.
* [Bug #1508766] Add docs for uuid module; docs written by George Yoshida, ↵Andrew M. Kuchling2006-06-281-0/+231
| | | | with minor rearrangements by me.
* Make full module name available as __module_name__ even when __name__ is set ↵Nick Coghlan2006-06-281-8/+13
| | | | to something else (like '__main__')
* Describe workaround for PyRange_New()'s removalAndrew M. Kuchling2006-06-261-2/+7
|
* [Bug #1511998] Various comments from Nick Coghlan; thanks!Andrew M. Kuchling2006-06-261-18/+20
|
* Fit Makefile for the Python doc environment better; this is a step towardAndrew M. Kuchling2006-06-231-62/+58
| | | | | | | | | | | | including the howtos in the build process. * Put LaTeX output in ../paper-<whatever>/. * Put HTML output in ../html/ * Explain some of the Makefile variables * Remove some cruft dating to my environment (e.g. the 'web' target) This makefile isn't currently invoked by the documentation build process, so these changes won't destabilize anything.
* Small fixes, mostly in the markup.Thomas Heller2006-06-221-7/+7
|
* Fix my name ;)Georg Brandl2006-06-221-1/+1
|
* fix markup nitFred Drake2006-06-221-1/+1
|
* Mention how to suppress warningsAndrew M. Kuchling2006-06-221-3/+13
|
* Reset the doc date to today for the automatic doc buildsNeal Norwitz2006-06-221-1/+1
|
* Bump versionAndrew M. Kuchling2006-06-211-1/+1
|
* Note some of Barry's workAndrew M. Kuchling2006-06-211-1/+7
|
* Link to LibRef module documentationAndrew M. Kuchling2006-06-211-1/+13
|
* [Bug #1504456] Mention xml -> xmlcore changeAndrew M. Kuchling2006-06-201-0/+9
|
* Minor edits and rearrangements; markup fixAndrew M. Kuchling2006-06-201-18/+14
|
* Add introductory paragraphs summarizing the release; minor editsAndrew M. Kuchling2006-06-201-11/+34
|
* Terminology and typography fixesAndrew M. Kuchling2006-06-203-5/+5
|
* Add four library itemsAndrew M. Kuchling2006-06-201-0/+23
|
* Uncomment wsgiref sectionAndrew M. Kuchling2006-06-201-8/+6
|
* remove non-working document formats from edistFred Drake2006-06-191-1/+1
|
* Preparing for 2.5b1.Anthony Baxter2006-06-191-1/+1
|
* Fix typos.Thomas Heller2006-06-181-28/+27
| | | | | | | | Fix doctest example. Mention in the tutorial that 'errcheck' is explained in the ref manual. Use better wording in some places. Remoce code examples that shouldn't be in the tutorial. Remove some XXX notices.
* remove unnecessary markupFred Drake2006-06-181-1/+1
|
* Update url.George Yoshida2006-06-172-11/+11
| | | | Old url returned status code:301 Moved permanently.
* markup fixGeorge Yoshida2006-06-171-1/+1
|
* SF patch 1504676: Make sgmllib char and entity references pluggableFred Drake2006-06-161-11/+43
| | | | (implementation/tests contributed by Sam Ruby)
* minor documentation cleanup. mention the bsddb.db interface explicitly by name.Gregory P. Smith2006-06-151-8/+14
|
* Patch #1446489 (zipfile: support for ZIP64)Ronald Oussoren2006-06-151-8/+16
|