summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This mention is obsolete.Antoine Pitrou2009-10-251-3/+0
|
* Merged revisions 75697 via svnmerge fromMark Dickinson2009-10-252-66/+102
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75697 | mark.dickinson | 2009-10-25 20:39:06 +0000 (Sun, 25 Oct 2009) | 3 lines Issue #1087418: Small performance boost for bitwise operations on longs. Initial patch by Gregory Smith; some tweaks added. ........
* Add NEWS entry for the various unsupported platforms.Antoine Pitrou2009-10-241-0/+7
|
* Disable support for Irix threadsAntoine Pitrou2009-10-241-6/+1
|
* Disable GNU pth supportAntoine Pitrou2009-10-243-38/+3
|
* Disable support for SunOS LWPAntoine Pitrou2009-10-241-0/+1
|
* Disable support for Mach C Threads.Antoine Pitrou2009-10-241-0/+1
|
* Remove AtheOS support, as per PEP 11 (which claims that all code was removed ↵Antoine Pitrou2009-10-2416-1693/+31
| | | | in Python 3.0).
* Blocked revisions 75675 via svnmergeEric Smith2009-10-240-0/+0
| | | | | | | | ........ r75675 | eric.smith | 2009-10-24 15:50:44 -0400 (Sat, 24 Oct 2009) | 1 line Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and it's not declared in any .h file. ........
* Blocked revisions 75672 via svnmergeMark Dickinson2009-10-240-0/+0
| | | | | | | | | | ........ r75672 | mark.dickinson | 2009-10-24 16:54:35 +0100 (Sat, 24 Oct 2009) | 4 lines Issue #7117: temporarily disable the short float repr while the pieces are being assembled. To re-enable, define the preprocessor symbol PY_SHORT_FLOAT_REPR ........
* Blocked revisions 75666 via svnmergeMark Dickinson2009-10-240-0/+0
| | | | | | | | | | ........ r75666 | mark.dickinson | 2009-10-24 15:01:08 +0100 (Sat, 24 Oct 2009) | 4 lines Issue #7117 (backport py3k float repr) continued: Add sys.float_repr_style attribute ('short' if short float repr is in used; 'legacy' otherwise). ........
* Add tests for sys.float_repr_styleMark Dickinson2009-10-241-0/+2
|
* Blocked revisions 75664 via svnmergeMark Dickinson2009-10-240-0/+0
| | | | | | | | ........ r75664 | mark.dickinson | 2009-10-24 14:44:16 +0100 (Sat, 24 Oct 2009) | 1 line Configure check for double rounding should take BASECFLAGS into account ........
* Merged revisions 75659 via svnmerge fromTarek Ziadé2009-10-243-6/+25
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75659 | tarek.ziade | 2009-10-24 15:29:44 +0200 (Sat, 24 Oct 2009) | 1 line #7066 - Fixed distutils.archive_util.make_archive behavior so it restores the cwd ........
* Blocked revisions 75653,75658,75660 via svnmergeMark Dickinson2009-10-240-0/+0
| | | | | | | | | | | | | | | | | | | | | | ........ r75653 | mark.dickinson | 2009-10-24 13:17:24 +0100 (Sat, 24 Oct 2009) | 1 line Temporary define to avoid build failure ........ r75658 | mark.dickinson | 2009-10-24 14:28:38 +0100 (Sat, 24 Oct 2009) | 8 lines Issue #7117 (backport py3k float repr) continued: - add double endianness detection to configure script - add configure-time check to see whether we can use inline assembly to get and set x87 control word in configure script - add functions to get and set x87 control word in Python/pymath.c - add pyport.h logic to determine whether it's safe to use the short float repr or not ........ r75660 | mark.dickinson | 2009-10-24 14:31:41 +0100 (Sat, 24 Oct 2009) | 1 line Remove temporary define from r75653 ........
* Blocked revisions 75650,75654-75655 via svnmergeAntoine Pitrou2009-10-240-0/+0
| | | | | | | | | | | | | | | | ........ r75650 | antoine.pitrou | 2009-10-24 13:59:41 +0200 (sam., 24 oct. 2009) | 3 lines Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of io.StringIO and io.BytesIO ........ r75654 | antoine.pitrou | 2009-10-24 14:23:18 +0200 (sam., 24 oct. 2009) | 3 lines Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and io.StringIO picklable. ........ r75655 | antoine.pitrou | 2009-10-24 14:28:22 +0200 (sam., 24 oct. 2009) | 3 lines Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept arbitrary keywords ........
* Blocked revisions 75651 via svnmergeMark Dickinson2009-10-240-0/+0
| | | | | | | | | | | | ........ r75651 | mark.dickinson | 2009-10-24 13:13:30 +0100 (Sat, 24 Oct 2009) | 7 lines Issue #7117: Prepare for backport of py3k float repr. Add the Python/dtoa.c file containing the main algorithms; add corresponding include file and include in Python.h; include license information for Python/dtoa.c; add dtoa.c and dtoa.h to Makefile. ........
* Recorded merge of revisions 75648 via svnmerge fromMark Dickinson2009-10-240-0/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75648 | mark.dickinson | 2009-10-24 12:47:17 +0100 (Sat, 24 Oct 2009) | 1 line Acknowledge Ned Deily (extensive bug hunting and testing on OS X) ........
* Merged revisions 75624 via svnmerge fromAntoine Pitrou2009-10-231-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75624 | antoine.pitrou | 2009-10-23 14:01:13 +0200 (ven., 23 oct. 2009) | 3 lines Fix Windows buildbot failure ........
* Merged revisions 75633 via svnmerge fromAntoine Pitrou2009-10-231-1/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75633 | antoine.pitrou | 2009-10-23 20:32:15 +0200 (ven., 23 oct. 2009) | 3 lines Issue #7194: test_thread could try to release an unacquired mutex (and fail). ........
* Changed try/finally to contextlib.closing, as discussed in issue 6882.Eric Smith2009-10-231-24/+7
|
* Blocked revisions 75620 via svnmergeEric Smith2009-10-220-0/+0
| | | | | | | | ........ r75620 | eric.smith | 2009-10-22 16:13:14 -0400 (Thu, 22 Oct 2009) | 1 line Per the discussion in issue6882, backport the try/finally work that was done to the py3k version (mostly in r59477, I think). ........
* #6927: fix wrong word.Georg Brandl2009-10-222-4/+4
|
* #7137: fix makefile() documentation to match the new parameters.Georg Brandl2009-10-221-7/+7
|
* Peephole constant folding had missed UNARY_POSITIVE.Raymond Hettinger2009-10-223-0/+7
|
* Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424.Vinay Sajip2009-10-212-0/+6
|
* Merged revisions 75580 via svnmerge fromGeorg Brandl2009-10-211-0/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75580 | georg.brandl | 2009-10-21 09:15:59 +0200 (Mi, 21 Okt 2009) | 1 line #7170: fix explanation about non-weakrefable builtin types. ........
* Another futile error in the previous commit :-(Antoine Pitrou2009-10-201-1/+1
|
* Merged revisions 75574 via svnmerge fromAntoine Pitrou2009-10-201-0/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75574 | antoine.pitrou | 2009-10-20 23:59:25 +0200 (mar., 20 oct. 2009) | 4 lines Test wouldn't work in debug mode. We probably need a function in test_support to handle this. ........
* clarify the buffer argBenjamin Peterson2009-10-201-2/+2
|
* Merged revisions 75570 via svnmerge fromAntoine Pitrou2009-10-205-29/+59
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75570 | antoine.pitrou | 2009-10-20 23:29:37 +0200 (mar., 20 oct. 2009) | 6 lines Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which fixes the problem of some exceptions being thrown at shutdown when the interpreter is killed. Patch by Adam Olsen. ........
* Merged revisions 75561 via svnmerge fromMark Dickinson2009-10-203-13/+16
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75561 | mark.dickinson | 2009-10-20 14:33:03 +0100 (Tue, 20 Oct 2009) | 3 lines Issue #7099: Decimal.is_normal should return True for all nonzero finite non-subnormal values, even those with exponent > Emax. ........
* Remove comment that went with the print_lock that was previously deleted.R. David Murray2009-10-201-2/+0
|
* Add maintainers.Raymond Hettinger2009-10-191-4/+4
|
* Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-WindowsAntoine Pitrou2009-10-195-13/+52
| | | | platforms, and assorted locale fixes by Derk Drukker.
* add myself to idlelibKurt B. Kaiser2009-10-191-1/+1
|
* egreen is Derk Drukker + fix NEWS formattingAntoine Pitrou2009-10-192-2/+3
|
* Add 'idlelib' to modules, and add a new table for the Tools, with oneR. David Murray2009-10-191-1/+8
| | | | | | | entry for which I noticed an active maintainer. IMO, if a tool doesn't get put on this list with at least one maintainer it may be in danger of being deleted by and by...
* Merged revisions 75531-75532 via svnmerge fromAntoine Pitrou2009-10-192-3/+7
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75531 | antoine.pitrou | 2009-10-19 20:17:18 +0200 (lun., 19 oct. 2009) | 4 lines Issue #5833: Fix extra space character in readline completion with the GNU readline library version 6.0. ........ r75532 | antoine.pitrou | 2009-10-19 20:20:21 +0200 (lun., 19 oct. 2009) | 3 lines NEWS entry for r75531. ........
* Merged revisions 75528 via svnmerge fromR. David Murray2009-10-191-1/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75528 | r.david.murray | 2009-10-19 13:53:58 -0400 (Mon, 19 Oct 2009) | 4 lines Clarify error report message, and don't recommend running in verbose mode for more information if we are already running in verbose mode. ........
* Since all regrtest -j output is now done in the main thread we are noR. David Murray2009-10-191-2/+1
| | | | longer using the print lock, so remove it.
* Merged revisions 75524 via svnmerge fromR. David Murray2009-10-191-2/+0
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75524 | r.david.murray | 2009-10-19 12:28:24 -0400 (Mon, 19 Oct 2009) | 6 lines Eliminate warning message that looks like an error message. When it was added not finding Lib/test in the path indicated something was wrong, but when running regtest using "python -m" Lib/test isn't typically in the path, so this message is now more disturbing than it is helpful. ........
* The stdout from tests is no longer compared against anything (not evenR. David Murray2009-10-191-3/+0
| | | | | to make sure it is empty), so eliminate the message that says running under verbose is different from running without it.
* Note that on py3k we are actually looking at sys.stdout, not sys.__stdout__.R. David Murray2009-10-191-0/+2
| | | | | | | | | | | | Merged revisions 75518 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75518 | r.david.murray | 2009-10-19 12:01:28 -0400 (Mon, 19 Oct 2009) | 3 lines Only run test_curses when sys.__stdout__ is a tty. This eliminates the last false positive when running regrtest with -j. ........
* Merged revisions 75503 via svnmerge fromR. David Murray2009-10-192-16/+19
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75503 | r.david.murray | 2009-10-18 17:12:37 -0400 (Sun, 18 Oct 2009) | 11 lines Issue #7151: regrtest would generate a JSON failure if there was output to stderr during the test run and it happened to get emitted after the worker thread emitted the result JSON. Now we capture stdout and stderr separately, which avoids that problem. It also means that _all_ stderr output is after all stdout output when we print the test results, but that seems acceptable, since output ordering is not guaranteed anyway. The patch also moves the emit of the test name into the output block generated after the test completes. Otherwise test names and test output/errors were mixed in the terminal display, making it difficult to determine which test generated the output. ........
* Blocked revisions 75510 via svnmergeEric Smith2009-10-190-0/+0
| | | | | | | | ........ r75510 | eric.smith | 2009-10-19 10:38:14 -0400 (Mon, 19 Oct 2009) | 1 line Issue #7169: Document PyFloat_AsString and PyFloat_AsReprString, and note that they are unsafe and deprecated. ........
* Blocked revisions 75506 via svnmergeEric Smith2009-10-190-0/+0
| | | | | | | | | | | | | | ........ r75506 | eric.smith | 2009-10-18 20:34:12 -0400 (Sun, 18 Oct 2009) | 7 lines Removed calls to PyFloat_AsReprString. This is in anticipation of possibly implementing issue 7117 (short float repr). This removes the last calls to PyFloat_AsString, PyFloat_AsReprString, and PyFloat_AsStringEx, which are unsafe. Also, switch to defines for error values to bring this code more in line with the py3k branch. ........
* Clean up merge of r75400.R. David Murray2009-10-182-42/+24
|
* Merged revisions 75499 via svnmerge fromAntoine Pitrou2009-10-181-0/+19
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75499 | antoine.pitrou | 2009-10-18 20:22:04 +0200 (dim., 18 oct. 2009) | 3 lines Add a test for same-thread asynchronous exceptions (see #1779233). ........
* Remove the uses of WITHOUT_COMPLEX introduced in r75471Mark Dickinson2009-10-182-4/+0
|