summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Remove sys.subversion and svn build identification leftovers.Georg Brandl2011-03-061-12/+0
|
* Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject()Victor Stinner2011-03-041-2/+19
|
* Issue #3080: Add PyModule_NewObject() functionVictor Stinner2011-03-041-1/+9
|
* Mentioned new clear() method of MutableSequence in its doc, and added unit ↵Eli Bendersky2011-03-041-1/+1
| | | | tests for its mixin methods
* Issue 9795: adds context manager protocol to nntplib.NNTP class so that it ↵Giampaolo Rodolà2011-03-032-0/+29
| | | | can used with the 'with' statement.
* Issue #10516: added copy() and clear() methods to bytearrays as wellEli Bendersky2011-03-031-4/+3
|
* Issue #11377: Deprecate platform.popen() and reimplement it with os.popen().Victor Stinner2011-03-031-0/+4
|
* issue 11372: use range instead of xrangeFred Drake2011-03-031-2/+2
|
* Issue #10831: Document the new formats (%li, %lli, %zi)Victor Stinner2011-03-021-0/+12
|
* Remove outdated pointer to optparse (fixes #11360).Éric Araujo2011-03-011-3/+0
| | | | The doc already points to argparse.
* Recommend inspecting the errno attribute of socket.error objects,Antoine Pitrou2011-02-281-21/+26
| | | | and improve wording.
* Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall.Antoine Pitrou2011-02-281-0/+10
|
* No need to put this at topAntoine Pitrou2011-02-281-11/+12
|
* Issue #11140: Lock.release() now raises a RuntimeError when attemptingAntoine Pitrou2011-02-281-0/+3
| | | | | to release an unacquired lock, as claimed in the threading documentation. The _thread.error exception is now an alias of RuntimeError.
* Fix issue 8594: adds a source_address parameter to ftplib module.Giampaolo Rodolà2011-02-281-6/+19
|
* make this a link #11345Benjamin Peterson2011-02-271-1/+1
|
* this isn't true anymoreBenjamin Peterson2011-02-261-3/+1
|
* Replace links to the old dev doc with links to the new devguide.Éric Araujo2011-02-264-7/+9
|
* Issue #11331: fixed documentation in logging cookbook.Vinay Sajip2011-02-261-2/+0
|
* Make Py3.x style "import builtins"Raymond Hettinger2011-02-261-2/+2
|
* Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-261-0/+114
|
* Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall.Antoine Pitrou2011-02-251-0/+10
|
* Issue #4761: Add the *at() family of functions (openat(), etc.) to the posixAntoine Pitrou2011-02-251-0/+200
| | | | module. Patch by Ross Lagerwall.
* Issue 11177: asyncore's create_socket() arguments can now be omitted.Giampaolo Rodolà2011-02-251-3/+5
|
* Issue #6064: Add a `daemon` keyword argument to the threading.ThreadAntoine Pitrou2011-02-252-5/+21
| | | | | | and multiprocessing.Process constructors in order to override the default behaviour of inheriting the daemonic property from the current thread/process.
* Add missing read() in distutils doc.Éric Araujo2011-02-251-1/+4
|
* Issue 10784: adds os.getpriority() and os.setpriority() functions.Giampaolo Rodolà2011-02-252-10/+60
|
* Issue #11303: Added shortcuts for utf8 and latin1 encodings.Alexander Belopolsky2011-02-251-0/+9
| | | | | Documented the list of optimized encodings as CPython implementation detail.
* Documented QueueListener change.Vinay Sajip2011-02-251-0/+9
|
* (issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi)Giampaolo Rodolà2011-02-251-2/+3
|
* Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall)Giampaolo Rodolà2011-02-252-0/+54
|
* Make svn:eol-style's more consistentAntoine Pitrou2011-02-251-59/+59
|
* Add 3.3 whatsnew to index.Georg Brandl2011-02-251-0/+1
|
* Issue #10516: adding list.clear() and list.copy() methodsEli Bendersky2011-02-251-1/+13
|
* Adds Python 3.3 what's new document.Giampaolo Rodolà2011-02-241-0/+95
|
* Allow usage of SomeABC.register as a class decorator. Patch by Edoardo ↵Éric Araujo2011-02-241-0/+3
| | | | Spadolini (#10868).
* rewriteBenjamin Peterson2011-02-241-26/+25
|
* this seems to be pointlessly nestedBenjamin Peterson2011-02-241-9/+6
|
* Issue #11304: Input/output tutorial - PI is rounded not truncated.Raymond Hettinger2011-02-241-1/+1
|
* Indent "versionadded" properly.Georg Brandl2011-02-231-5/+5
|
* Issue #3080: Add PyModule_GetNameObject()Victor Stinner2011-02-231-7/+15
| | | | | repr(module) uses %R to format module name and filenames, instead of '%s' and '%U', so surrogates from undecodable bytes in a filename (PEP 383) are escaped.
* Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new APIBrett Cannon2011-02-221-7/+14
| | | | by making methods() into a module attribute as it is statically calculated.
* Issue #10924: Adding salt and Modular Crypt Format to crypt library.Sean Reifscheider2011-02-221-9/+97
|
* Issue #11085: Moved collections abstract base classes into a separate moduleRaymond Hettinger2011-02-223-122/+145
| | | | | | called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module.
* Issue 11263: Fix link to source code.Raymond Hettinger2011-02-211-1/+1
|
* 3.2 is stable now.Georg Brandl2011-02-211-1/+1
|
* Issue 10160: Both single-arg and multi-arg calls have been sped-up.Raymond Hettinger2011-02-211-3/+3
|
* Bump trunk to 3.3 alpha 0.Georg Brandl2011-02-204-9/+11
|
* Topic and suspicious update.Georg Brandl2011-02-201-29/+15
|
* Fix two typos in what’s new (#11234).Éric Araujo2011-02-191-2/+2
|