Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update Misc/NEWS to include os.getpriority() and os.setpriority() addition. | Giampaolo Rodolà | 2011-02-25 | 1 | -0/+2 |
| | |||||
* | Issue 10784: adds os.getpriority() and os.setpriority() functions. | Giampaolo Rodolà | 2011-02-25 | 7 | -12/+146 |
| | |||||
* | Issue #11114: Fix catastrophic performance of tell() on text files (up | Antoine Pitrou | 2011-02-25 | 3 | -47/+150 |
| | | | | | to 1000x faster in some cases). It is still one to two order of magnitudes slower than binary tell(). | ||||
* | (issue 11214) - fix asyncore.strerror test failure on AIX | Giampaolo Rodolà | 2011-02-25 | 1 | -1/+1 |
| | |||||
* | Skip os.sendfile() test if threading module is not available. | Giampaolo Rodolà | 2011-02-25 | 1 | -0/+1 |
| | |||||
* | Issue #11303: Added shortcuts for utf8 and latin1 encodings. | Alexander Belopolsky | 2011-02-25 | 2 | -4/+19 |
| | | | | | Documented the list of optimized encodings as CPython implementation detail. | ||||
* | logging: enabled test which was intermittently failing on buildbots. | Vinay Sajip | 2011-02-25 | 1 | -1/+1 |
| | |||||
* | Documented QueueListener change. | Vinay Sajip | 2011-02-25 | 1 | -0/+9 |
| | |||||
* | Improved QueueListener implementation - queue sentinel addition made extensible. | Vinay Sajip | 2011-02-25 | 1 | -1/+11 |
| | |||||
* | Normalize the encoding names for Latin-1 and UTF-8 to | Marc-André Lemburg | 2011-02-25 | 32 | -79/+84 |
| | | | | | | | | | | 'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303. | ||||
* | Rename internal helper function and make it static. | Georg Brandl | 2011-02-25 | 1 | -5/+5 |
| | |||||
* | Regenerate configure after r88580. | Georg Brandl | 2011-02-25 | 1 | -486/+574 |
| | |||||
* | (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 | 7 | -21/+550 |
| | |||||
* | Fix .hgeol | Antoine Pitrou | 2011-02-25 | 1 | -12/+15 |
| | |||||
* | More eol-style's | Antoine Pitrou | 2011-02-25 | 5 | -1421/+1420 |
| | |||||
* | Make svn:eol-style's more consistent | Antoine Pitrou | 2011-02-25 | 22 | -513/+513 |
| | |||||
* | rewrite with assertIs | Benjamin Peterson | 2011-02-25 | 1 | -2/+1 |
| | |||||
* | run autoconf | Benjamin Peterson | 2011-02-25 | 2 | -524/+484 |
| | |||||
* | Add 3.3 whatsnew to index. | Georg Brandl | 2011-02-25 | 1 | -0/+1 |
| | |||||
* | Remove unused m4 define. | Georg Brandl | 2011-02-25 | 1 | -7/+0 |
| | |||||
* | Removed fcmp and FUZZ from test.support, following the discussion on python-dev: | Eli Bendersky | 2011-02-25 | 3 | -25/+10 |
| | | | | http://mail.python.org/pipermail/python-dev/2011-January/107735.html | ||||
* | Issue #10516: adding list.clear() and list.copy() methods | Eli Bendersky | 2011-02-25 | 6 | -2/+81 |
| | |||||
* | Adds Python 3.3 what's new document. | Giampaolo Rodolà | 2011-02-24 | 1 | -0/+95 |
| | |||||
* | Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with | Antoine Pitrou | 2011-02-24 | 4 | -0/+21 |
| | | | | a buffer struct having a NULL data pointer. | ||||
* | Issue #11286: Fixed unpickling of empty 2.x strings. | Alexander Belopolsky | 2011-02-24 | 4 | -13/+12 |
| | |||||
* | Allow usage of SomeABC.register as a class decorator. Patch by Edoardo ↵ | Éric Araujo | 2011-02-24 | 5 | -3/+36 |
| | | | | 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 |
| | |||||
* | Merged revisions 88535 via svnmerge from | Benjamin Peterson | 2011-02-24 | 1 | -0/+4 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r88535 | brett.cannon | 2011-02-23 13:46:46 -0600 (Wed, 23 Feb 2011) | 1 line Add lib2to3.__main__ for easy testing from the console. ........ | ||||
* | Issue #11304: Input/output tutorial - PI is rounded not truncated. | Raymond Hettinger | 2011-02-24 | 1 | -1/+1 |
| | |||||
* | Revert r88503 as Benjamin's request. | Brett Cannon | 2011-02-23 | 2 | -6/+3 |
| | |||||
* | Issue #3080: Fix test_reprlib on Windows | Victor Stinner | 2011-02-23 | 1 | -1/+1 |
| | | | | Fix the test for last module changes (r88520). | ||||
* | Issue #11272: Fix input() and sys.stdin for Windows newline | Victor Stinner | 2011-02-23 | 4 | -5/+48 |
| | | | | | On Windows, input() strips '\r' (and not only '\n'), and sys.stdin uses universal newline (replace '\r\n' by '\n'). | ||||
* | Issue #11224: Improved sparse file read support (r85916) introduced a | Lars Gustäbel | 2011-02-23 | 3 | -3/+22 |
| | | | | | | | | | | | | | | | | regression in _FileInFile which is used in file-like objects returned by TarFile.extractfile(). The inefficient design of the _FileInFile.read() method causes various dramatic side-effects and errors: - The data segment of a file member is read completely into memory every(!) time a small block is accessed. This is not only slow but may cause unexpected MemoryErrors with very large files. - Reading members from compressed tar archives is even slower because of the excessive backwards seeking which is done when the same data segment is read over and over again. - As a backwards seek on a TarFile opened in stream mode is not possible, using extractfile() fails with a StreamError. | ||||
* | dynload_dl.c: replace tabs by spaces | Victor Stinner | 2011-02-23 | 1 | -7/+7 |
| | |||||
* | Add tests for the _ChainMap helper class. | Raymond Hettinger | 2011-02-23 | 2 | -0/+119 |
| | |||||
* | Indent "versionadded" properly. | Georg Brandl | 2011-02-23 | 1 | -5/+5 |
| | |||||
* | Add new subdirectory to LIBSUBDIRS. | Georg Brandl | 2011-02-23 | 1 | -1/+1 |
| | |||||
* | Fix imports from collections.abc | Raymond Hettinger | 2011-02-23 | 7 | -20/+22 |
| | |||||
* | Issue #3080: Add PyModule_GetNameObject() | Victor Stinner | 2011-02-23 | 3 | -21/+45 |
| | | | | | 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. | ||||
* | Issue #3080: Mark _PyImport_FindBuiltin() argument as constant | Victor Stinner | 2011-02-23 | 2 | -4/+4 |
| | | | | | | And as a consequence, mark also name argument of _PyImport_FindExtensionUnicode() constant too. But I plan to change this argument type to PyObject* later. | ||||
* | Issue #3080: document encoding used by import functions | Victor Stinner | 2011-02-22 | 3 | -16/+51 |
| | |||||
* | Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc() | Victor Stinner | 2011-02-22 | 8 | -11/+10 |
| | | | | The first argument, fqname, was not used. | ||||
* | Issue #3080: Mark PyWin_FindRegisteredModule() as private | Victor Stinner | 2011-02-22 | 2 | -7/+7 |
| | | | | | This function was not declared in Python public API (in any .h file) and not documented. Mark it as private to prepare a change of its API. | ||||
* | A crypt algorithm may not be available by returning None. | Brett Cannon | 2011-02-22 | 1 | -2/+7 |
| | |||||
* | Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API | Brett Cannon | 2011-02-22 | 3 | -58/+60 |
| | | | | by making methods() into a module attribute as it is statically calculated. | ||||
* | Issue #11277: finally fix Snow Leopard crash following r88460. | Antoine Pitrou | 2011-02-22 | 1 | -1/+1 |
| | | | | (probably an OS-related issue with mmap) | ||||
* | Fix test.test_crypt.test_methods() to pass on OS X. | Brett Cannon | 2011-02-22 | 1 | -1/+4 |
| | |||||
* | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 36 | -84/+69 |
| |