Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merged revisions 83088 via svnmerge from | Ronald Oussoren | 2010-07-24 | 1 | -7/+42 |
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83088 | ronald.oussoren | 2010-07-23 14:53:51 +0100 (Fri, 23 Jul 2010) | 8 lines This fixes issue7900 by adding code that deals with the fact that getgroups(2) might return more that MAX_GROUPS on OSX. See the issue (and python-dev archives) for the gory details. Summarized: OSX behaves rather oddly and Apple says this is intentional. ........ | ||||
* | Merged revisions 83096 via svnmerge from | Ronald Oussoren | 2010-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83096 | ronald.oussoren | 2010-07-23 17:05:35 +0100 (Fri, 23 Jul 2010) | 13 lines Ensure that sys.prefix can reliably be found on OSX. This fixes a small issue that was exposed by running test_subprocess through regrtest (and hence in a subdirectory). Without this patch running python.exe from the build tree will fail when these tree conditions are true: 1) the CWD is not the root of build tree 2) python.exe is found through $PATH 3) the framework is not yet installed ........ | ||||
* | Merged revisions 83030 via svnmerge from | Antoine Pitrou | 2010-07-21 | 1 | -2/+8 |
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83030 | antoine.pitrou | 2010-07-21 18:41:31 +0200 (mer., 21 juil. 2010) | 5 lines Issue #5395: check that array.fromfile() re-raises an IOError instead of replacing it with EOFError. (this is only an added test, but 2.x will get a fix too) ........ | ||||
* | Apply patch from Ray Allen for issue 9296 | Doug Hellmann | 2010-07-21 | 1 | -1/+1 |
| | |||||
* | Fix #9316. if/is grammar corrections. | Brian Curtin | 2010-07-21 | 1 | -3/+3 |
| | |||||
* | Merged revisions 82941,82943 via svnmerge from | Mark Dickinson | 2010-07-18 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82941 | mark.dickinson | 2010-07-18 08:29:02 +0100 (Sun, 18 Jul 2010) | 3 lines Issue #9277: Struct module: standard bool packing was incorrect if char is unsigned. Thanks Stefan Krah for the patch. ........ r82943 | mark.dickinson | 2010-07-18 08:48:20 +0100 (Sun, 18 Jul 2010) | 1 line Misc/NEWS entry for r82941. ........ | ||||
* | Remove PYOS_OS2 special cases from the Solaris/OpenBSD section. | Stefan Krah | 2010-07-13 | 1 | -5/+1 |
| | |||||
* | Issue #9185: On Solaris and OpenBSD, posix_getcwd() could loop indefinitely | Stefan Krah | 2010-07-13 | 1 | -0/+23 |
| | | | | if the path length exceeded PATH_MAX. | ||||
* | Merged revisions 82628,82630 via svnmerge from | Benjamin Peterson | 2010-07-07 | 1 | -2/+8 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82628 | benjamin.peterson | 2010-07-07 13:44:05 -0500 (Wed, 07 Jul 2010) | 1 line this needn't be in the loop ........ r82630 | benjamin.peterson | 2010-07-07 13:54:59 -0500 (Wed, 07 Jul 2010) | 1 line don't ignore exceptions from PyObject_IsTrue ........ | ||||
* | Merged revisions 82607 via svnmerge from | Mark Dickinson | 2010-07-06 | 1 | -20/+23 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82607 | mark.dickinson | 2010-07-06 16:00:40 +0100 (Tue, 06 Jul 2010) | 1 line Indentation and PEP 7 fixes. ........ | ||||
* | Merged revisions 82595 via svnmerge from | Mark Dickinson | 2010-07-05 | 1 | -8/+8 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82595 | mark.dickinson | 2010-07-05 21:14:26 +0100 (Mon, 05 Jul 2010) | 1 line Post-detabification cleanup. ........ | ||||
* | Issue #9130: Fix validation of relative imports in parser module. | Mark Dickinson | 2010-07-04 | 1 | -3/+4 |
| | |||||
* | Issue #9128: Validate class decorator syntax correctly in parser module. | Mark Dickinson | 2010-07-04 | 1 | -8/+9 |
| | |||||
* | Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module, | Victor Stinner | 2010-07-03 | 1 | -73/+71 |
| | | | | ensure that the input string length is a multiple of the frame size | ||||
* | Revert r81681 (issue 8810). | Alexander Belopolsky | 2010-07-03 | 1 | -2/+1 |
| | |||||
* | Issue #9125: Update parser module for "except ... as ..." syntax. | Mark Dickinson | 2010-06-30 | 1 | -4/+7 |
| | |||||
* | Fix indentation of Python code example in C comment. | Mark Dickinson | 2010-06-25 | 1 | -11/+11 |
| | |||||
* | Issue #9075: In the ssl module, remove the setting of a `debug` flag | Antoine Pitrou | 2010-06-25 | 1 | -1/+0 |
| | | | | on an OpenSSL structure. | ||||
* | Fix #8959 by reverting revision 80761. | Thomas Heller | 2010-06-21 | 13 | -297/+1898 |
| | |||||
* | Fix Issue4452 - Incorrect docstring of os.setpgrp | Senthil Kumaran | 2010-06-17 | 1 | -1/+1 |
| | |||||
* | Issue #8986: erfc was raising OverflowError on Linux for arguments in | Mark Dickinson | 2010-06-13 | 1 | -6/+16 |
| | | | | | the (approximate) range (-27.3, 30.0), as a result of an escaped errno value. | ||||
* | Revert r80580 due to some unintended side effects. See issue #8202 for details. | Nick Coghlan | 2010-06-13 | 1 | -3/+5 |
| | |||||
* | Fix possible undefined behaviour from signed overflow in struct module. | Mark Dickinson | 2010-06-11 | 1 | -22/+29 |
| | | | | Backport of revisions 81897, 81898 and 81902 from py3k. | ||||
* | Remove extra ] from itertools.count docstring. | Ezio Melotti | 2010-06-11 | 1 | -1/+1 |
| | |||||
* | Issue #8930: fix some C code indentation | Antoine Pitrou | 2010-06-09 | 1 | -68/+68 |
| | |||||
* | Issue #8899: time.struct_time now has class and atribute docstrings. | Alexander Belopolsky | 2010-06-05 | 1 | -10/+16 |
| | |||||
* | Issue #8864: Define _XOPEN_SOURCE on Solaris for the | Martin v. Löwis | 2010-06-04 | 1 | -0/+6 |
| | | | | multiprocessing module. | ||||
* | Issue8810: Clearing up docstring for tzinfo.utcoffset. | Sean Reifscheider | 2010-06-04 | 1 | -1/+2 |
| | |||||
* | Untabify Modules/config.c.in. | Mark Dickinson | 2010-05-29 | 1 | -18/+17 |
| | |||||
* | Issue #7150: Raise OverflowError if the result of adding or subtracting | Alexander Belopolsky | 2010-05-27 | 1 | -13/+16 |
| | | | | timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range. | ||||
* | Issue #5640: Fix Shift-JIS incremental encoder for error handlers different | Victor Stinner | 2010-05-21 | 1 | -1/+1 |
| | | | | than strict | ||||
* | Clear the OpenSSL error queue each time an error is signalled. | Antoine Pitrou | 2010-05-16 | 1 | -0/+3 |
| | | | | When the error queue is not emptied, strange things can happen on the next SSL call, depending on the OpenSSL version. | ||||
* | reindent _cursesmodule.c | Victor Stinner | 2010-05-15 | 1 | -1910/+1910 |
| | | | | | Use untabify.py + emacs (python3 mode) + manual editions for Py_BEGIN_ALLOW_THREADS / Py_END_ALLOW_THREADS | ||||
* | Remove unused variable, and fix a compilation warning on Windows | Amaury Forgeot d'Arc | 2010-05-15 | 1 | -1/+1 |
| | |||||
* | Improve _ssl.c formatting | Antoine Pitrou | 2010-05-12 | 1 | -34/+27 |
| | |||||
* | Issue #8681: Make the zlib module's error messages more informative when | Antoine Pitrou | 2010-05-11 | 1 | -4/+17 |
| | | | | the zlib itself doesn't give any detailed explanation. | ||||
* | Issue #8674: fix another bogus overflow check in audioop module. | Mark Dickinson | 2010-05-11 | 1 | -17/+8 |
| | |||||
* | Use ';' after initialization macros to avoid confusing re-indenters | Andrew M. Kuchling | 2010-05-10 | 1 | -40/+40 |
| | |||||
* | Break long line in macros | Andrew M. Kuchling | 2010-05-10 | 1 | -7/+14 |
| | |||||
* | Move { out of #if...#else block; this confuses Emacs' C-mode | Andrew M. Kuchling | 2010-05-10 | 1 | -4/+6 |
| | |||||
* | Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop | Mark Dickinson | 2010-05-10 | 1 | -28/+21 |
| | | | | module. Thanks Tomas Hoger for the patch. | ||||
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 119 | -71052/+71052 |
| | |||||
* | Issue #8644: Improve accuracy of timedelta.total_seconds method. | Mark Dickinson | 2010-05-09 | 1 | -3/+19 |
| | | | | (Backport of r80979 to py3k.) Thanks Alexander Belopolsky. | ||||
* | Skip signal handler re-installation if it is not necessary. Issue 8354. | Jean-Paul Calderone | 2010-05-08 | 1 | -0/+5 |
| | |||||
* | Issue #8571: Fix an internal error when compressing or decompressing a | Antoine Pitrou | 2010-05-07 | 1 | -3/+4 |
| | | | | | chunk larger than 1GB with the zlib module's compressor and decompressor objects. | ||||
* | Untabify Modules/posixmodule.c (2) | Victor Stinner | 2010-05-06 | 1 | -10/+10 |
| | | | | Fix some more functions by hand | ||||
* | Untabify Modules/posixmodule.c | Victor Stinner | 2010-05-05 | 1 | -5047/+5047 |
| | | | | | Run Antoine Pitrou "untabify" script + manual editions (OS/2 and some continuation lines). | ||||
* | Remove extraneous whitespace. | Brett Cannon | 2010-05-05 | 3 | -51/+51 |
| | |||||
* | Remove an unnecessary variable. | Brett Cannon | 2010-05-05 | 1 | -3/+0 |
| | | | | Found using Clang's static analyzer. | ||||
* | Untabify Modules/_io/fileio.c | Antoine Pitrou | 2010-05-05 | 1 | -705/+705 |
| |