Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove sys.subversion and svn build identification leftovers. | Georg Brandl | 2011-03-06 | 1 | -12/+0 |
| | |||||
* | Issue #3080: Add PyImport_AddModuleObject() and PyImport_ExecCodeModuleObject() | Victor Stinner | 2011-03-04 | 1 | -2/+19 |
| | |||||
* | Issue #3080: Add PyModule_NewObject() function | Victor Stinner | 2011-03-04 | 1 | -1/+9 |
| | |||||
* | Mentioned new clear() method of MutableSequence in its doc, and added unit ↵ | Eli Bendersky | 2011-03-04 | 1 | -1/+1 |
| | | | | tests for its mixin methods | ||||
* | Issue 9795: adds context manager protocol to nntplib.NNTP class so that it ↵ | Giampaolo Rodolà | 2011-03-03 | 2 | -0/+29 |
| | | | | can used with the 'with' statement. | ||||
* | Issue #10516: added copy() and clear() methods to bytearrays as well | Eli Bendersky | 2011-03-03 | 1 | -4/+3 |
| | |||||
* | Issue #11377: Deprecate platform.popen() and reimplement it with os.popen(). | Victor Stinner | 2011-03-03 | 1 | -0/+4 |
| | |||||
* | issue 11372: use range instead of xrange | Fred Drake | 2011-03-03 | 1 | -2/+2 |
| | |||||
* | Issue #10831: Document the new formats (%li, %lli, %zi) | Victor Stinner | 2011-03-02 | 1 | -0/+12 |
| | |||||
* | Remove outdated pointer to optparse (fixes #11360). | Éric Araujo | 2011-03-01 | 1 | -3/+0 |
| | | | | The doc already points to argparse. | ||||
* | Recommend inspecting the errno attribute of socket.error objects, | Antoine Pitrou | 2011-02-28 | 1 | -21/+26 |
| | | | | and improve wording. | ||||
* | Issue #10866: Add socket.sethostname(). Initial patch by Ross Lagerwall. | Antoine Pitrou | 2011-02-28 | 1 | -0/+10 |
| | |||||
* | No need to put this at top | Antoine Pitrou | 2011-02-28 | 1 | -11/+12 |
| | |||||
* | Issue #11140: Lock.release() now raises a RuntimeError when attempting | Antoine Pitrou | 2011-02-28 | 1 | -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-28 | 1 | -6/+19 |
| | |||||
* | make this a link #11345 | Benjamin Peterson | 2011-02-27 | 1 | -1/+1 |
| | |||||
* | this isn't true anymore | Benjamin Peterson | 2011-02-26 | 1 | -3/+1 |
| | |||||
* | Replace links to the old dev doc with links to the new devguide. | Éric Araujo | 2011-02-26 | 4 | -7/+9 |
| | |||||
* | Issue #11331: fixed documentation in logging cookbook. | Vinay Sajip | 2011-02-26 | 1 | -2/+0 |
| | |||||
* | Make Py3.x style "import builtins" | Raymond Hettinger | 2011-02-26 | 1 | -2/+2 |
| | |||||
* | Issue #11297: Add collections.ChainMap() | Raymond Hettinger | 2011-02-26 | 1 | -0/+114 |
| | |||||
* | Issue #10755: Add the posix.fdlistdir() function. Patch by Ross Lagerwall. | Antoine Pitrou | 2011-02-25 | 1 | -0/+10 |
| | |||||
* | Issue #4761: Add the *at() family of functions (openat(), etc.) to the posix | Antoine Pitrou | 2011-02-25 | 1 | -0/+200 |
| | | | | module. Patch by Ross Lagerwall. | ||||
* | Issue 11177: asyncore's create_socket() arguments can now be omitted. | Giampaolo Rodolà | 2011-02-25 | 1 | -3/+5 |
| | |||||
* | Issue #6064: Add a `daemon` keyword argument to the threading.Thread | Antoine Pitrou | 2011-02-25 | 2 | -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 Araujo | 2011-02-25 | 1 | -1/+4 |
| | |||||
* | Issue 10784: adds os.getpriority() and os.setpriority() functions. | Giampaolo Rodolà | 2011-02-25 | 2 | -10/+60 |
| | |||||
* | Issue #11303: Added shortcuts for utf8 and latin1 encodings. | Alexander Belopolsky | 2011-02-25 | 1 | -0/+9 |
| | | | | | Documented the list of optimized encodings as CPython implementation detail. | ||||
* | Documented QueueListener change. | Vinay Sajip | 2011-02-25 | 1 | -0/+9 |
| | |||||
* | (issue 11232) - fix asyncore documentation issue (patch by Sandro Tosi) | Giampaolo Rodolà | 2011-02-25 | 1 | -2/+3 |
| | |||||
* | Issue 10882: add os.sendfile(). (patch provided by Ross Lagerwall) | Giampaolo Rodolà | 2011-02-25 | 2 | -0/+54 |
| | |||||
* | Make svn:eol-style's more consistent | Antoine Pitrou | 2011-02-25 | 1 | -59/+59 |
| | |||||
* | Add 3.3 whatsnew to index. | Georg Brandl | 2011-02-25 | 1 | -0/+1 |
| | |||||
* | Issue #10516: adding list.clear() and list.copy() methods | Eli Bendersky | 2011-02-25 | 1 | -1/+13 |
| | |||||
* | Adds Python 3.3 what's new document. | Giampaolo Rodolà | 2011-02-24 | 1 | -0/+95 |
| | |||||
* | Allow usage of SomeABC.register as a class decorator. Patch by Edoardo ↵ | Éric Araujo | 2011-02-24 | 1 | -0/+3 |
| | | | | Spadolini (#10868). | ||||
* | rewrite | Benjamin Peterson | 2011-02-24 | 1 | -26/+25 |
| | |||||
* | this seems to be pointlessly nested | Benjamin Peterson | 2011-02-24 | 1 | -9/+6 |
| | |||||
* | Issue #11304: Input/output tutorial - PI is rounded not truncated. | Raymond Hettinger | 2011-02-24 | 1 | -1/+1 |
| | |||||
* | Indent "versionadded" properly. | Georg Brandl | 2011-02-23 | 1 | -5/+5 |
| | |||||
* | Issue #3080: Add PyModule_GetNameObject() | Victor Stinner | 2011-02-23 | 1 | -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 API | Brett Cannon | 2011-02-22 | 1 | -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 Reifscheider | 2011-02-22 | 1 | -9/+97 |
| | |||||
* | Issue #11085: Moved collections abstract base classes into a separate module | Raymond Hettinger | 2011-02-22 | 3 | -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 Hettinger | 2011-02-21 | 1 | -1/+1 |
| | |||||
* | 3.2 is stable now. | Georg Brandl | 2011-02-21 | 1 | -1/+1 |
| | |||||
* | Issue 10160: Both single-arg and multi-arg calls have been sped-up. | Raymond Hettinger | 2011-02-21 | 1 | -3/+3 |
| | |||||
* | Bump trunk to 3.3 alpha 0. | Georg Brandl | 2011-02-20 | 4 | -9/+11 |
| | |||||
* | Topic and suspicious update. | Georg Brandl | 2011-02-20 | 1 | -29/+15 |
| | |||||
* | Fix two typos in what’s new (#11234). | Éric Araujo | 2011-02-19 | 1 | -2/+2 |
| |