Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for issue #16800: Use buffered write to handle EINTR. | Serhiy Storchaka | 2013-02-12 | 1 | -2/+2 |
| | |||||
* | Issue #16800: tempfile.gettempdir() no longer left temporary files when | Serhiy Storchaka | 2013-02-12 | 5 | -12/+93 |
| | | | | the disk is full. Original patch by Amir Szekely. | ||||
* | Issue #13555: cPickle now supports files larger than 2 GiB. | Serhiy Storchaka | 2013-02-12 | 6 | -130/+217 |
| | |||||
* | Issue #4591: Uid and gid values larger than 2**31 are supported now. | Serhiy Storchaka | 2013-02-12 | 8 | -144/+299 |
| | |||||
* | Clean trailing whitespaces in Makefile.pre.in and grpmodule.c. | Serhiy Storchaka | 2013-02-12 | 2 | -6/+6 |
| | |||||
* | Issue #17111: Prevent test_surrogates (test_fileio) failure on OS X 10.4. | Ned Deily | 2013-02-12 | 2 | -2/+5 |
| | | | | | | | | | | | | An odd bug in OS X 10.4 causes open(2) on a non-existent, invalid-encoded filename to return errno 22, EINVAL: Invalid argument, instead of the expected errno 2, ENOENT: No such file or directory, *if* the containing directory is not empty. That caused frequent failures when running the buildbot tests on 10.4 depending on the state of the test working directory. The failure is easy to reproduce on 10.4 by running the test directly (not with regrtest), first in an empty directory, then after adding a file to it. The fix is to check for and pass if either errno is returned. | ||||
* | #17171: backport behavior-confirming test from python3. | R David Murray | 2013-02-11 | 1 | -1/+18 |
| | |||||
* | #17064: fix sporadic permission errors in test_mailbox on windows. | R David Murray | 2013-02-11 | 1 | -6/+10 |
| | | | | Backported from patch by Jeremy Kloth. | ||||
* | Correction to issue 17052 fix | Michael Foord | 2013-02-11 | 3 | -3/+3 |
| | |||||
* | Issue 17502: unittest discovery should use self.testLoader | Michael Foord | 2013-02-10 | 3 | -1/+20 |
| | |||||
* | Issue #17141: random.vonmisesvariate() no more hangs for large kappas. | Serhiy Storchaka | 2013-02-10 | 3 | -10/+40 |
| | |||||
* | Issue #17149: Fix random.vonmisesvariate to always return results in [0, ↵ | Mark Dickinson | 2013-02-10 | 3 | -2/+19 |
| | | | | 2*math.pi]. | ||||
* | Issue #1470548: XMLGenerator now works with UTF-16 and UTF-32 encodings. | Serhiy Storchaka | 2013-02-10 | 3 | -47/+124 |
| | |||||
* | Issue #6975: os.path.realpath() now correctly resolves multiple nested ↵ | Serhiy Storchaka | 2013-02-10 | 3 | -38/+95 |
| | | | | symlinks on POSIX platforms. | ||||
* | Import shutil for restore_test_support_TESTFN(). | Serhiy Storchaka | 2013-02-10 | 1 | -1/+1 |
| | |||||
* | Minor cleanups. | Raymond Hettinger | 2013-02-09 | 1 | -19/+19 |
| | |||||
* | Issue #17156: pygettext.py now correctly escapes non-ascii characters. | Serhiy Storchaka | 2013-02-09 | 2 | -6/+7 |
| | |||||
* | Keep IDLE from displaying spurious SystemExit tracebacks | Raymond Hettinger | 2013-02-09 | 2 | -1/+7 |
| | | | | | when running scripts that terminated by raising SystemExit (i.e. unittest and turtledemo). | ||||
* | #16564: test to confirm behavior that regressed in python3. | R David Murray | 2013-02-09 | 3 | -0/+21 |
| | | | | | | Also add running of test_email_renamed to the email regrtest. It contains tests that the base email/tests/test_email.py does not, which I discovered while trying to backport this test for confirmation of the behavior. | ||||
* | add proper dependencies on expat headers and sources | Christian Heimes | 2013-02-09 | 1 | -1/+17 |
| | |||||
* | Issue #7358: cStringIO.StringIO now supports writing to and reading from | Serhiy Storchaka | 2013-02-09 | 3 | -32/+96 |
| | | | | a stream larger than 2 GiB on 64-bit systems. | ||||
* | Issue #10355: SpooledTemporaryFile properties and xreadline method now work ↵ | Serhiy Storchaka | 2013-02-09 | 3 | -11/+48 |
| | | | | for unrolled files. | ||||
* | Issue #16686: Fixed a lot of bugs in audioop module. | Serhiy Storchaka | 2013-02-09 | 4 | -280/+457 |
| | | | | | | | | | | | | * avgpp() and maxpp() no more crash on empty and 1-samples input fragment. They now work when peak-peak values are greater INT_MAX. * ratecv() no more crashes on empty input fragment. * Fixed an integer overflow in ratecv(). * Fixed an integer overflow in add() and bias() for 32-bit samples. * reverse(), lin2lin() and ratecv() no more lose precision for 32-bit samples. * max() and rms() no more returns negative result for 32-bit sample -0x80000000. * minmax() now returns correct max value for 32-bit sample -0x80000000. * avg(), mul(), tomono() and tostereo() now round negative result down and can return 32-bit sample -0x80000000. * add() now can return 32-bit sample -0x80000000. | ||||
* | Issue #17161: make install now also installs a python2 and python man page. | Ned Deily | 2013-02-09 | 2 | -4/+14 |
| | |||||
* | Fix accidental non-breakable space (U+00A0). | Serhiy Storchaka | 2013-02-08 | 1 | -1/+1 |
| | |||||
* | whitespace fix | Gregory P. Smith | 2013-02-08 | 1 | -1/+1 |
| | |||||
* | Issue #6972: fix the documentation mis applied patch. | Gregory P. Smith | 2013-02-08 | 1 | -10/+13 |
| | |||||
* | Issue #17073: Fix some integer overflows in sqlite3 module. | Serhiy Storchaka | 2013-02-07 | 8 | -75/+203 |
| | |||||
* | Issue #17043: The unicode-internal decoder no longer read past the end of | Serhiy Storchaka | 2013-02-07 | 2 | -27/+27 |
| | | | | input buffer. | ||||
* | Issue #17118: Add new tests for testing Python-Tcl interaction. | Serhiy Storchaka | 2013-02-07 | 1 | -0/+22 |
| | |||||
* | Fix test_from_dll* in test_returnfuncptrs.py. | Serhiy Storchaka | 2013-02-07 | 1 | -5/+4 |
| | |||||
* | Fix Issue17069: Document getcode method in urllib.request.rst | Senthil Kumaran | 2013-02-07 | 1 | -0/+2 |
| | |||||
* | #17142: fix apparent copy and paste error in test_all. | R David Murray | 2013-02-06 | 1 | -1/+1 |
| | |||||
* | #17091: update docstring for _thread.Lock.acquire. | R David Murray | 2013-02-04 | 1 | -2/+2 |
| | | | | | | The main docs were fixed to remove mention of None long ago, but the docstring was not. Reported by Armin Rigo, patch by Ian Cordasco. | ||||
* | Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows. | Serhiy Storchaka | 2013-02-04 | 1 | -1/+4 |
| | |||||
* | Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple | Serhiy Storchaka | 2013-02-04 | 7 | -14/+115 |
| | | | | parses nested mutating sequence. | ||||
* | fix find_library on Solaris (closes #5289) | Benjamin Peterson | 2013-02-04 | 3 | -0/+32 |
| | |||||
* | Add alias to restore 2.7.2 compatibility for setup scripts (#13994). | Éric Araujo | 2013-02-03 | 2 | -0/+5 |
| | | | | | | | | | | The customize_compiler function moved many times during the 2.7 series; in 2.7.3, setup scripts importing this function from ccompiler were broken. This commit restores compatibility without reintroducing the issue that #13994 originally fixed (duplication of the function). A unit test makes little sense here, as distutils tests never do imports in functions, and the fix is very simple. | ||||
* | Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying | Serhiy Storchaka | 2013-02-03 | 3 | -20/+87 |
| | | | | | stream or a decoder produces data of an unexpected type (i.e. when io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec). | ||||
* | Issue #16698: Skip posix test_getgroups when built with OS X | Ned Deily | 2013-02-02 | 2 | -0/+10 |
| | | | | deployment target prior to 10.6. | ||||
* | Issue #15633: httplib.HTTPResponse is now mark closed when the server sends ↵ | Antoine Pitrou | 2013-02-02 | 3 | -7/+27 |
| | | | | less than the advertised Content-Length. | ||||
* | Back out fix for issue #13886; it introduced a new bug in interactive ↵ | Nadeem Vawda | 2013-02-02 | 2 | -4/+1 |
| | | | | readline use. | ||||
* | Issue 16398: Use memcpy() in deque.rotate(). | Raymond Hettinger | 2013-02-02 | 1 | -50/+60 |
| | |||||
* | Fix test for issue #6972. | Serhiy Storchaka | 2013-02-02 | 1 | -0/+1 |
| | |||||
* | Issue #17034: Use Py_CLEAR() in stringobject.c. | Serhiy Storchaka | 2013-02-02 | 1 | -10/+5 |
| | |||||
* | Preserve backslashes in malicious zip files for testing issue #6972. | Serhiy Storchaka | 2013-02-02 | 1 | -1/+6 |
| | |||||
* | Issue #15881: Fixed atexit hook in multiprocessing. | Benjamin Peterson | 2013-02-02 | 2 | -9/+34 |
| | |||||
* | merge heads | Benjamin Peterson | 2013-02-02 | 2 | -9/+18 |
|\ | |||||
| * | Fix the test and remove trailing dots on Windows for issue #6972. | Serhiy Storchaka | 2013-02-02 | 2 | -9/+18 |
| | | |||||
* | | Update the embedded copy of the expat XML parser to 2.1.0. It brings | Gregory P. Smith | 2012-07-14 | 13 | -253/+375 |
|/ | | | | | | | | | with it a vareity of bug fixes, both security and behavior. See http://www.libexpat.org/ for the list. NOTE: I already backported the expat hash randomization fix in March. Fixes issue #14340. |