summaryrefslogtreecommitdiffstats
path: root/Doc/lib/lib.tex
Commit message (Collapse)AuthorAgeFilesLines
* [Bug #1514540] Instead of putting the standard types in a section, put them ↵Andrew M. Kuchling2006-07-311-2/+2
| | | | in a chapter of their own. This means string methods will now show up in the ToC. (Should the types come before or after the functions+exceptions+constants chapter? I've put them after, for now.)
* If binhex is higher-level than binascii, it should come first in the chapterAndrew M. Kuchling2006-07-271-1/+1
|
* Patch #1504046: Add documentation for xml.etree.Neal Norwitz2006-07-101-0/+1
| | | | | | /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.
* [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.
* New docs for ctypes.Thomas Heller2006-06-101-1/+0
|
* Import wsgiref into the stdlib, as of the external version 0.1-r2181.Phillip J. Eby2006-06-091-0/+1
|
* On python-dev Thomas Heller said these were committedTim Peters2006-06-061-0/+1
| | | | | by mistake in rev 46693, so reverting this part of rev 46693.
* Specify argtypes for all test functions. Maybe that helps on strange ;-) ↵Thomas Heller2006-06-061-1/+0
| | | | architectures
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-291-2/+2
| | | | | | Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
* For now, I gave up with automatic conversion of reST to Python-latex,Thomas Heller2006-05-261-0/+1
| | | | | | so I'm writing this in latex now. Skeleton for the ctypes reference.
* Add msilib documentation.Martin v. Löwis2006-05-011-0/+1
|
* This is the start of documentation for the sqlite3 module. Please feel free toGerhard Häring2006-04-291-0/+1
| | | | find a better place for the link to it than alongside bsddb & friends.
* first cut at trace module docSkip Montanaro2006-04-231-1/+1
|
* Documentation for ctypes.Thomas Heller2006-04-211-0/+1
| | | | | | | | | I think that 'generic operating system services' is the best category. Note that the Doc/lib/libctypes.latex file is generated from reST sources. You are welcome to make typo fixes, and I'll try to keep the reST sources in sync, but markup changes would be lost - they should be fixed in the tool that creates the latex file. The conversion script is external/ctypes/docs/manual/mkpydoc.py.
* Document the contextlib module.Phillip J. Eby2006-03-271-0/+1
|
* Add documentation for PEP 338Nick Coghlan2006-03-241-0/+1
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-161-3/+0
|
* Create _ast module.Martin v. Löwis2006-02-271-0/+1
| | | | Cleanup Python-ast.c generation.
* Added the cProfile module.Armin Rigo2006-02-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Based on lsprof (patch #1212837) by Brett Rosen and Ted Czotter. With further editing by Michael Hudson and myself. History in svn repo: http://codespeak.net/svn/user/arigo/hack/misc/lsprof * Module/_lsprof.c is the internal C module, Lib/cProfile.py a wrapper. * pstats.py updated to display cProfile's caller/callee timings if available. * setup.py and NEWS updated. * documentation updates in the profiler section: - explain the differences between the three profilers that we have now - profile and cProfile can use a unified documentation, like (c)Pickle - mention that hotshot is "for specialized usage" now - removed references to the "old profiler" that no longer exists * test updates: - extended test_profile to cover delicate cases like recursion - added tests for the caller/callee displays - added test_cProfile, performing the same tests for cProfile * TO-DO: - cProfile gives a nicer name to built-in, particularly built-in methods, which could be backported to profile. - not tested on Windows recently!
* [Patch #1375417] Massive rearrangement of the Library Reference.Andrew M. Kuchling2005-12-221-136/+230
| | | | | | | | | Fred approved just checking it in; he may make further fixes. The change shrinks the 'Generic OS' and other OS chapters, which had become something of a dumping ground for random modules. It differs from the last version of the patch: 1) I've added introductions for the new chapters (still missing a few -- search for 'intro') 2) a few modules have been rearranged slightly from the version in the patch
* r1076@spiff: Fredrik | 2005-12-12 22:32:28 +0100Fredrik Lundh2005-12-121-0/+1
| | | | added xml.etree documentation stub
* [ sf.net patch # 1121611 ]Gregory P. Smith2005-08-211-0/+1
| | | | | | | | | A new hashlib module to replace the md5 and sha modules. It adds support for additional secure hashes such as SHA-256 and SHA-512. The hashlib module uses OpenSSL for fast platform optimized implementations of algorithms when available. The old md5 and sha modules still exist as wrappers around hashlib to preserve backwards compatibility.
* Patch #1180012: add documentation for modulefinderGeorg Brandl2005-06-181-0/+1
|
* SF patch #941881: PEP 309 Implementation (Partial Function Application).Raymond Hettinger2005-02-281-0/+1
| | | | | Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
* Patch #579435: Shadow Password Support ModuleMartin v. Löwis2005-01-231-0/+1
|
* documentation for the zipimport module using contributed patchFred Drake2005-01-191-0/+1
| | | | (closes SF bug #853800; markup adjusted)
* Document the reconvert module.Skip Montanaro2005-01-161-0/+1
|
* Remove deprecated xmllib from inclusion in the docs.Raymond Hettinger2004-12-061-1/+1
|
* Remove the deprecated statcache module.Raymond Hettinger2004-12-051-1/+0
|
* Remove the deprecated whrandom module.Raymond Hettinger2004-12-041-2/+0
|
* SF Patch #1048341: subprocess documentation, based on PEP/docstring byFredrik Lundh2004-10-171-0/+1
| | | | Peter Astrand, with markup by Fredrik Lundh and Raymond Hettinger.
* Remove docs for xreadlines, mpz, rotorAndrew M. Kuchling2004-08-311-3/+0
|
* [Bug #873146] Document pickletools module (haven't tested the LaTeX yet)Andrew M. Kuchling2004-08-071-0/+1
|
* Added documentation for the "smtpd" module.Fred Drake2004-07-111-0/+1
| | | | Closes SF bug #450803.
* Add decimal docs to the core.Raymond Hettinger2004-07-051-0/+1
|
* Patch #963318: Add support for client-side cookie management.Martin v. Löwis2004-05-311-0/+1
|
* Add documentation for collections.deque().Raymond Hettinger2004-01-291-0/+1
|
* Initial checkin of docs for Lib/platform.py .Brett Cannon2003-10-141-0/+1
| | | | | | Closes patch #785752 and bug #726911. Should be backported after correctness and such has been verified by Fred.
* + libdumdbmSkip Montanaro2003-07-141-0/+1
|
* Rename lib__future__.tex to libfuture.tex and add link in lib.tex.Jeremy Hylton2003-05-281-0/+1
|
* Library documentation for the 'test' package. Still needs to be checked by ↵Brett Cannon2003-05-071-0/+1
| | | | Fred.
* Patch #536883: SimpleXMLRPCServer auto-docing subclass.Martin v. Löwis2003-04-181-0/+1
|
* Implement IDNA (Internationalized Domain Names in Applications).Martin v. Löwis2003-04-181-0/+1
|
* + libtimeitSkip Montanaro2003-04-091-0/+1
|
* patch [ 698505 ] docs for hotshot moduleAnthony Baxter2003-04-071-0/+1
|
* include csv doc section - Fred, you may want to change the locationSkip Montanaro2003-03-201-0/+1
|
* Add libossaudiodev.tex.Greg Ward2003-03-101-0/+1
|
* Move itertools module from the sandbox and into production.Raymond Hettinger2003-02-011-0/+1
|
* SF #664011, move tarfile module in docsNeal Norwitz2003-01-071-1/+1
|
* SF #642236, optparse LaTeX docs by Johannes GijsbersNeal Norwitz2003-01-061-0/+1
|