summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix broken example of csv.reader use (it returns an iterator, which isn'tThomas Wouters2006-02-161-1/+2
| | | | | | indexable) by using the same 'for' construct as all other examples. (Also emphasizes that reading from a random iterable is no different than reading from a file.)
* Added some more versionchanged markup.Vinay Sajip2006-02-151-0/+6
|
* use correct function in exampleFred Drake2006-02-151-1/+1
|
* Doc some user visible changesNeal Norwitz2006-02-131-1/+4
|
* Even more copyright year locations!Georg Brandl2006-02-111-1/+1
|
* Update general copyright years to 2006.Georg Brandl2006-02-112-2/+3
|
* Added information on function name added to LogRecord, and the 'extra' ↵Vinay Sajip2006-02-091-13/+96
| | | | keyword parameter.
* Added the cProfile module.Armin Rigo2006-02-083-42/+124
| | | | | | | | | | | | | | | | | | | | | | | 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!
* Update projected release dateAndrew M. Kuchling2006-02-081-1/+2
|
* Add versionadded note for new methodsNeal Norwitz2006-02-071-0/+2
|
* Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the sameNeal Norwitz2006-02-051-1/+2
| | | | | | | | | | | on both Unix (SVR4 and BSD) and Windows. Restores behaviour of passing -1 for anonymous memory on Unix. Use MAP_ANONYMOUS instead of _ANON since the latter is deprecated according to Linux (gentoo) man pages. Should we continue to allow mmap.mmap(0, length) to work on Windows? 0 is a valid fd. Will backport bugfix portions.
* SF bug 1415455, fix typo in module nameNeal Norwitz2006-02-041-1/+1
|
* Patch #1422385: Changes to nis module to support multiple NIS domainsMartin v. Löwis2006-02-041-3/+18
|
* SF patch #1421726Fredrik Lundh2006-02-021-1/+1
| | | | fixed typo in language reference
* module list utilityFredrik Lundh2006-01-241-0/+126
|
* Correct misspellings.Georg Brandl2006-01-234-4/+4
|
* Add markup to new section in codecs docsGeorg Brandl2006-01-231-41/+42
|
* Correct typos and markup errors (Raymond, thanks for texcheck)Georg Brandl2006-01-234-5/+5
|
* Add \versionadded for sftp schemeGeorg Brandl2006-01-231-0/+1
|
* Another typo.Georg Brandl2006-01-221-1/+1
|
* typoGeorg Brandl2006-01-221-1/+2
|
* Correct several typos in libos.tex. Bug #1412227.Georg Brandl2006-01-221-11/+11
|
* TypoGeorg Brandl2006-01-221-1/+1
|
* Remove reference to Grail and Netscape 2.0 from cgi docs.Georg Brandl2006-01-221-2/+1
|
* Misc. changes, including documenting the ability to specify a class ↵Vinay Sajip2006-01-221-29/+46
| | | | attribute in Formatter configuration. Contributed by Shane Hathaway.
* Fix typoWalter Dörwald2006-01-211-1/+1
|
* Patch #1410783: add documentation links for static/classmethodGeorg Brandl2006-01-201-1/+9
|
* Document supported schemes.Georg Brandl2006-01-201-3/+8
|
* Try to resolve the remaining webbrowser issues (backgrounding, local urls)Georg Brandl2006-01-201-9/+10
|
* Add markup to a "Python Standard Library" doc reference I added for bug 839585.Georg Brandl2006-01-201-2/+3
|
* Bug #1402224: Add warning to dl docs about crashes.Georg Brandl2006-01-201-0/+4
|
* Bug #1396471: Document that Windows' ftell() can return invalidGeorg Brandl2006-01-201-1/+5
| | | | values for text files with UNIX-style line endings.
* add missing version identificationFred Drake2006-01-201-0/+2
|
* fixed example:Fredrik Lundh2006-01-171-11/+19
| | | | adding missing import, handle_close, test code, etc.
* Update email.Message.get_filename() documentation.Barry Warsaw2006-01-171-4/+5
|
* Add recent itemAndrew M. Kuchling2006-01-151-0/+8
|
* the implementation uses ZipImportError, not ZipImporterError...Fredrik Lundh2006-01-151-1/+1
|
* typoFredrik Lundh2006-01-151-1/+1
|
* Remove dots in \version{changed,added} argument andGeorg Brandl2006-01-157-12/+12
| | | | correct argument order.
* Remove extra period at end.Neal Norwitz2006-01-151-1/+1
|
* Patch #1103116: AF_NETLINK sockets basic support.Martin v. Löwis2006-01-141-0/+3
|
* added kjohnson to the ACKS listFredrik Lundh2006-01-141-0/+1
|
* added a missing +\versionadded{2.2} tagFredrik Lundh2006-01-111-0/+1
|
* added a few missing \versionadded{2.3} tagsFredrik Lundh2006-01-113-0/+6
|
* Bug #1397205: doc typoGeorg Brandl2006-01-101-1/+1
|
* added a couple of missing periods.Fredrik Lundh2006-01-091-4/+4
|
* fixed broken sentenceFredrik Lundh2006-01-091-3/+3
|
* typoFredrik Lundh2006-01-091-1/+1
|
* Fix typos.Walter Dörwald2006-01-091-3/+3
|
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-081-0/+125
|