summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* markup fixFred Drake2006-07-201-2/+2
|
* Updated documentation for TimedRotatingFileHandler relating to how rollover ↵Vinay Sajip2006-07-201-7/+5
| | | | files are named. The previous documentation was wrongly the same as for RotatingFileHandler.
* Fix bug #1520914. Starting in 2.4, time.strftime() began to check the boundsBrett Cannon2006-07-181-0/+2
| | | | | | | of values in the time tuple passed in. Unfortunately people came to rely on undocumented behaviour of setting unneeded values to 0, regardless of if it was within the valid range. Now those values force the value internally to the minimum value when 0 is passed in.
* Attribute more featuresAndrew M. Kuchling2006-07-171-10/+24
|
* document xmlcore (still minimal; needs mention in each of the xml.* modules)Fred Drake2006-07-171-0/+11
| | | | SF bug #1504456 (partial)
* clean up some link markupFred Drake2006-07-161-2/+2
|
* Bug #15187702 : ext/win-cookbook.html has a broken link to distutilsGeorge Yoshida2006-07-151-5/+7
|
* typoFredrik Lundh2006-07-141-1/+1
|
* Updates for the ctypes documentation.Thomas Heller2006-07-141-37/+27
|
* Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode.Peter Astrand2006-07-141-4/+3
|
* Mention new optionsAndrew M. Kuchling2006-07-141-0/+5
|
* Try to improve grammar further.Neal Norwitz2006-07-141-1/+1
|
* Patch #1521874: grammar errors in doanddont.tex.Georg Brandl2006-07-141-2/+3
|
* Fix the wrong description of LibraryLoader.LoadLibrary, and documentThomas Heller2006-07-121-7/+12
| | | | the DEFAULT_MODE constant.
* Bump version number; add sys._current_framesAndrew M. Kuchling2006-07-111-2/+8
|
* 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
|