Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Bug #1514540] Instead of putting the standard types in a section, put them ↵ | Andrew M. Kuchling | 2006-07-31 | 1 | -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 chapter | Andrew M. Kuchling | 2006-07-27 | 1 | -1/+1 |
| | |||||
* | Patch #1504046: Add documentation for xml.etree. | Neal Norwitz | 2006-07-10 | 1 | -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. Kuchling | 2006-06-28 | 1 | -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 Heller | 2006-06-10 | 1 | -1/+0 |
| | |||||
* | Import wsgiref into the stdlib, as of the external version 0.1-r2181. | Phillip J. Eby | 2006-06-09 | 1 | -0/+1 |
| | |||||
* | On python-dev Thomas Heller said these were committed | Tim Peters | 2006-06-06 | 1 | -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 Heller | 2006-06-06 | 1 | -1/+0 |
| | | | | architectures | ||||
* | Apply modified version of Collin Winter's patch #1478788 | Nick Coghlan | 2006-05-29 | 1 | -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 Heller | 2006-05-26 | 1 | -0/+1 |
| | | | | | | so I'm writing this in latex now. Skeleton for the ctypes reference. | ||||
* | Add msilib documentation. | Martin v. Löwis | 2006-05-01 | 1 | -0/+1 |
| | |||||
* | This is the start of documentation for the sqlite3 module. Please feel free to | Gerhard Häring | 2006-04-29 | 1 | -0/+1 |
| | | | | find a better place for the link to it than alongside bsddb & friends. | ||||
* | first cut at trace module doc | Skip Montanaro | 2006-04-23 | 1 | -1/+1 |
| | |||||
* | Documentation for ctypes. | Thomas Heller | 2006-04-21 | 1 | -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. Eby | 2006-03-27 | 1 | -0/+1 |
| | |||||
* | Add documentation for PEP 338 | Nick Coghlan | 2006-03-24 | 1 | -0/+1 |
| | |||||
* | Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. | Neal Norwitz | 2006-03-16 | 1 | -3/+0 |
| | |||||
* | Create _ast module. | Martin v. Löwis | 2006-02-27 | 1 | -0/+1 |
| | | | | Cleanup Python-ast.c generation. | ||||
* | Added the cProfile module. | Armin Rigo | 2006-02-08 | 1 | -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. Kuchling | 2005-12-22 | 1 | -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 +0100 | Fredrik Lundh | 2005-12-12 | 1 | -0/+1 |
| | | | | added xml.etree documentation stub | ||||
* | [ sf.net patch # 1121611 ] | Gregory P. Smith | 2005-08-21 | 1 | -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 modulefinder | Georg Brandl | 2005-06-18 | 1 | -0/+1 |
| | |||||
* | SF patch #941881: PEP 309 Implementation (Partial Function Application). | Raymond Hettinger | 2005-02-28 | 1 | -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 Module | Martin v. Löwis | 2005-01-23 | 1 | -0/+1 |
| | |||||
* | documentation for the zipimport module using contributed patch | Fred Drake | 2005-01-19 | 1 | -0/+1 |
| | | | | (closes SF bug #853800; markup adjusted) | ||||
* | Document the reconvert module. | Skip Montanaro | 2005-01-16 | 1 | -0/+1 |
| | |||||
* | Remove deprecated xmllib from inclusion in the docs. | Raymond Hettinger | 2004-12-06 | 1 | -1/+1 |
| | |||||
* | Remove the deprecated statcache module. | Raymond Hettinger | 2004-12-05 | 1 | -1/+0 |
| | |||||
* | Remove the deprecated whrandom module. | Raymond Hettinger | 2004-12-04 | 1 | -2/+0 |
| | |||||
* | SF Patch #1048341: subprocess documentation, based on PEP/docstring by | Fredrik Lundh | 2004-10-17 | 1 | -0/+1 |
| | | | | Peter Astrand, with markup by Fredrik Lundh and Raymond Hettinger. | ||||
* | Remove docs for xreadlines, mpz, rotor | Andrew M. Kuchling | 2004-08-31 | 1 | -3/+0 |
| | |||||
* | [Bug #873146] Document pickletools module (haven't tested the LaTeX yet) | Andrew M. Kuchling | 2004-08-07 | 1 | -0/+1 |
| | |||||
* | Added documentation for the "smtpd" module. | Fred Drake | 2004-07-11 | 1 | -0/+1 |
| | | | | Closes SF bug #450803. | ||||
* | Add decimal docs to the core. | Raymond Hettinger | 2004-07-05 | 1 | -0/+1 |
| | |||||
* | Patch #963318: Add support for client-side cookie management. | Martin v. Löwis | 2004-05-31 | 1 | -0/+1 |
| | |||||
* | Add documentation for collections.deque(). | Raymond Hettinger | 2004-01-29 | 1 | -0/+1 |
| | |||||
* | Initial checkin of docs for Lib/platform.py . | Brett Cannon | 2003-10-14 | 1 | -0/+1 |
| | | | | | | Closes patch #785752 and bug #726911. Should be backported after correctness and such has been verified by Fred. | ||||
* | + libdumdbm | Skip Montanaro | 2003-07-14 | 1 | -0/+1 |
| | |||||
* | Rename lib__future__.tex to libfuture.tex and add link in lib.tex. | Jeremy Hylton | 2003-05-28 | 1 | -0/+1 |
| | |||||
* | Library documentation for the 'test' package. Still needs to be checked by ↵ | Brett Cannon | 2003-05-07 | 1 | -0/+1 |
| | | | | Fred. | ||||
* | Patch #536883: SimpleXMLRPCServer auto-docing subclass. | Martin v. Löwis | 2003-04-18 | 1 | -0/+1 |
| | |||||
* | Implement IDNA (Internationalized Domain Names in Applications). | Martin v. Löwis | 2003-04-18 | 1 | -0/+1 |
| | |||||
* | + libtimeit | Skip Montanaro | 2003-04-09 | 1 | -0/+1 |
| | |||||
* | patch [ 698505 ] docs for hotshot module | Anthony Baxter | 2003-04-07 | 1 | -0/+1 |
| | |||||
* | include csv doc section - Fred, you may want to change the location | Skip Montanaro | 2003-03-20 | 1 | -0/+1 |
| | |||||
* | Add libossaudiodev.tex. | Greg Ward | 2003-03-10 | 1 | -0/+1 |
| | |||||
* | Move itertools module from the sandbox and into production. | Raymond Hettinger | 2003-02-01 | 1 | -0/+1 |
| | |||||
* | SF #664011, move tarfile module in docs | Neal Norwitz | 2003-01-07 | 1 | -1/+1 |
| | |||||
* | SF #642236, optparse LaTeX docs by Johannes Gijsbers | Neal Norwitz | 2003-01-06 | 1 | -0/+1 |
| |