summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* #7404: remove reference to non-existing example files.Georg Brandl2009-12-281-3/+1
|
* #7586: fix typo.Georg Brandl2009-12-281-1/+1
|
* Updated sys.flags table in DocEzio Melotti2009-12-251-0/+4
|
* Added markup and default arg, fixed exampleEzio Melotti2009-12-241-7/+7
|
* Fix for Issue7570: Error in urllib2 example.Senthil Kumaran2009-12-241-2/+2
|
* builtin-ins -> builtinsBenjamin Peterson2009-12-201-6/+6
|
* #7381: subprocess documentation and library docstring consistency fixes.Georg Brandl2009-12-201-7/+9
|
* Document the headers parameter for set_tunnel.Senthil Kumaran2009-12-201-1/+4
|
* #7388: "python".capitalize() in the DocEzio Melotti2009-12-1912-14/+14
|
* Issue #7545: improve documentation of the `buffering` argument in io.open().Antoine Pitrou2009-12-191-4/+14
|
* #7480: remove tautology.Georg Brandl2009-12-191-2/+1
|
* #7479: add note about function availability on Unices.Georg Brandl2009-12-191-13/+18
|
* #7527: use standard versionadded tags.Georg Brandl2009-12-191-3/+5
|
* Issue #3366: Add error function and complementary error function toMark Dickinson2009-12-191-0/+16
| | | | math module.
* Issue #7529: logging: Minor correction to documentation.Vinay Sajip2009-12-171-0/+2
|
* Issue #3366: Add expm1 function to math module. Thanks Eric Smith forMark Dickinson2009-12-161-0/+14
| | | | testing on Windows.
* adverbBenjamin Peterson2009-12-151-1/+1
|
* Issue #3366: Add lgamma function to math module.Mark Dickinson2009-12-111-0/+8
|
* Add a reverse() method to collections.deque().Raymond Hettinger2009-12-101-0/+5
|
* #7177: clarify the potential PIPE deadlock warningsPhilip Jenvey2009-12-031-6/+8
|
* Issue #7333: The `posix` module gains an `initgroups()` function providingAntoine Pitrou2009-12-021-0/+9
| | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone.
* Fix versions and spacing.Georg Brandl2009-11-281-4/+10
|
* fix typoGregory P. Smith2009-11-271-2/+2
|
* Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.Martin v. Löwis2009-11-271-4/+30
|
* Issue #6845: Add restart support for binary upload in ftplib. TheAntoine Pitrou2009-11-271-2/+5
| | | | | | | `storbinary()` method of FTP and FTP_TLS objects gains an optional `rest` argument. Patch by Pablo Mouzo. (note: the patch also adds a test for the rest argument in retrbinary())
* #7400: typo.Georg Brandl2009-11-261-1/+1
|
* Forgot to add a `versionadded` tagAntoine Pitrou2009-11-251-0/+2
|
* Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ↵Antoine Pitrou2009-11-251-0/+10
| | | | | | returning the total number of seconds in the duration. Patch by Brian Quinlan.
* Fix some documentation examples involving the repr of a float.Mark Dickinson2009-11-244-8/+8
|
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-7/+3
| | | | | %f-style formatting, which used to occur at high precision. Float formatting should now be consistent between 2.7 and 3.1.
* #7345: fix arguments of formatyear().Georg Brandl2009-11-231-2/+2
|
* issue5738: The distribution example was confusing, and out of date. It's too ↵Jesse Noller2009-11-211-7/+0
| | | | large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing.
* Issue 7363: fix indentation in socketserver udpserver example.R. David Murray2009-11-201-3/+3
|
* Fix docstrings for itertools combinatoric functions.Raymond Hettinger2009-11-191-2/+2
|
* Fix markup.Georg Brandl2009-11-181-5/+4
|
* upcase PythonGeorg Brandl2009-11-181-1/+1
|
* #7302: fix link.Georg Brandl2009-11-161-1/+1
|
* Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP usingAntoine Pitrou2009-11-151-0/+58
| | | | TLS or SSL. Patch by Giampaolo Rodola'.
* Issue #4969: The mimetypes module now reads the MIME database fromAntoine Pitrou2009-11-151-3/+19
| | | | the registry under Windows. Patch by Gabriel Genellina.
* Issue #6816: expose the zipfile and directory execution mechanism to Python ↵Nick Coghlan2009-11-151-44/+97
| | | | code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation.
* Fix terminology.Georg Brandl2009-11-141-1/+1
|
* revert r76243; I was right, actually :)Benjamin Peterson2009-11-131-4/+4
|
* never mind about eval mode in this caseBenjamin Peterson2009-11-131-4/+4
|
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-121-5/+8
|
* Give the profile module a module directive.Georg Brandl2009-11-121-0/+2
|
* Show example of how to make a sorted dictionaryRaymond Hettinger2009-11-101-0/+22
|
* Remove redundant sentence.R. David Murray2009-11-091-7/+6
|
* discuss how to use -pBenjamin Peterson2009-11-091-0/+8
|
* #7271: fix typo.Georg Brandl2009-11-071-1/+1
|
* #7259: show correct equivalent for operator.i* operations in docstring; fix ↵Georg Brandl2009-11-041-87/+89
| | | | minor issues in operator docs.