summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* regenerate Python-ast.cBenjamin Peterson2009-12-131-89/+455
|
* Merged revisions 76534,76538,76628,76701,76774 via svnmerge fromBenjamin Peterson2009-12-134-10/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76534 | martin.v.loewis | 2009-11-26 02:42:05 -0600 (Thu, 26 Nov 2009) | 2 lines Fix typo. ........ r76538 | georg.brandl | 2009-11-26 14:48:25 -0600 (Thu, 26 Nov 2009) | 1 line #7400: typo. ........ r76628 | andrew.kuchling | 2009-12-02 08:27:11 -0600 (Wed, 02 Dec 2009) | 1 line Markup fixes ........ r76701 | andrew.kuchling | 2009-12-07 20:37:05 -0600 (Mon, 07 Dec 2009) | 1 line Typo fix; grammar fix ........ r76774 | benjamin.peterson | 2009-12-12 18:54:15 -0600 (Sat, 12 Dec 2009) | 1 line account for PyObject_IsInstance's new ability to fail ........
* Blocked revisions 76602,76690-76691,76736-76737,76754 via svnmergeBenjamin Peterson2009-12-130-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ........ r76602 | raymond.hettinger | 2009-11-30 15:13:52 -0600 (Mon, 30 Nov 2009) | 1 line Handle step values other than one. ........ r76690 | vinay.sajip | 2009-12-06 11:57:11 -0600 (Sun, 06 Dec 2009) | 1 line logging: Added optional 'secure' parameter to SMTPHandler. ........ r76691 | vinay.sajip | 2009-12-06 12:05:04 -0600 (Sun, 06 Dec 2009) | 1 line logging: Improved support for SMTP over TLS. ........ r76736 | raymond.hettinger | 2009-12-10 00:00:33 -0600 (Thu, 10 Dec 2009) | 1 line Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d) ........ r76737 | raymond.hettinger | 2009-12-10 00:42:54 -0600 (Thu, 10 Dec 2009) | 1 line Add a reverse() method to collections.deque(). ........ r76754 | vinay.sajip | 2009-12-11 03:16:01 -0600 (Fri, 11 Dec 2009) | 1 line Issue #7470: logging: fix bug in Unicode encoding fallback. ........
* death to exec statementBenjamin Peterson2009-12-131-3/+3
|
* Clarify importlib.abc.PyPycLoader.write_bytecode().Brett Cannon2009-12-121-2/+3
|
* Merged revisions 76763 via svnmerge fromAntoine Pitrou2009-12-123-1/+8
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76763 | antoine.pitrou | 2009-12-12 20:13:08 +0100 (sam., 12 déc. 2009) | 7 lines Issue #7466: segmentation fault when the garbage collector is called in the middle of populating a tuple. Patch by Florent Xicluna. (note: no NEWS entry for trunk since the bug was introduced in 2.7/3.1) ........
* Merged revisions 76755 via svnmerge fromMark Dickinson2009-12-115-6/+216
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76755 | mark.dickinson | 2009-12-11 17:29:33 +0000 (Fri, 11 Dec 2009) | 2 lines Issue #3366: Add lgamma function to math module. ........
* Restore the svn property changes in r76754Mark Dickinson2009-12-110-0/+0
|
* Issue #7470: logging: fix bug in Unicode encoding fallback.Vinay Sajip2009-12-110-0/+0
|
* Merged revisions 76750 via svnmerge fromTarek Ziadé2009-12-101-47/+26
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76750 | tarek.ziade | 2009-12-10 20:29:53 +0100 (Thu, 10 Dec 2009) | 1 line using an existing file to avoid dealing with a sleep to test file ages ........
* Merged revisions 76746 via svnmerge fromTarek Ziadé2009-12-102-35/+130
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76746 | tarek.ziade | 2009-12-10 16:29:03 +0100 (Thu, 10 Dec 2009) | 1 line added test coverage for distutils.dep_util, and cleaned up the module ........
* Merged revisions 76740 via svnmerge fromMark Dickinson2009-12-101-2/+2
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76740 | mark.dickinson | 2009-12-10 10:36:32 +0000 (Thu, 10 Dec 2009) | 8 lines Replace the size check for PyMem_MALLOC and PyMem_REALLOC with an almost equivalent[*] check that doesn't produce compiler warnings about a 'x < 0' check on an unsigned type. [*] it's equivalent for inputs of type size_t or Py_ssize_t, or any smaller unsigned or signed integer type. ........
* Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)Raymond Hettinger2009-12-103-0/+53
|
* remove magic number bumping from the 2.x -U option #7459Benjamin Peterson2009-12-101-19/+11
|
* Merged revisions 76726-76727 via svnmerge fromR. David Murray2009-12-103-3/+199
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk The merge adds a test with an invalid rather than a missing line end, since the py3K code passed the original issue 5949 test. New test also by Scott Dial. ........ r76726 | r.david.murray | 2009-12-09 10:15:31 -0500 (Wed, 09 Dec 2009) | 6 lines Issue 5949: fixed IMAP4_SSL hang when the IMAP server response is missing proper end-of-line termination. Patch and tests by Scott Dial. The new tests include a test harness which will make it easier to add additional tests. ........ r76727 | r.david.murray | 2009-12-09 11:41:39 -0500 (Wed, 09 Dec 2009) | 2 lines Skip new imaplib SSL tests if ssl is not available. ........
* Add a reverse() method to collections.deque().Raymond Hettinger2009-12-104-0/+63
|
* Wording clarification.Brett Cannon2009-12-101-4/+5
|
* Clarify the intention of raising ImportError for ↵Brett Cannon2009-12-091-2/+3
| | | | importlib.abc.PyLoader.(source|bytecode)_path.
* Issue #7461: objects returned by os.popen() should support the context ↵Antoine Pitrou2009-12-092-0/+12
| | | | manager protocol
* Merged revisions 76720 via svnmerge fromAntoine Pitrou2009-12-081-3/+12
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76720 | antoine.pitrou | 2009-12-08 20:46:38 +0100 (mar., 08 déc. 2009) | 3 lines Make test_pipes a little bit more robust. ........
* Merged revisions 76718 via svnmerge fromAntoine Pitrou2009-12-081-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76718 | antoine.pitrou | 2009-12-08 20:35:12 +0100 (mar., 08 déc. 2009) | 3 lines Fix transient refleaks in test_urllib. Thanks to Florent Xicluna. ........
* Merged revisions 76716 via svnmerge fromAntoine Pitrou2009-12-082-1/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76716 | antoine.pitrou | 2009-12-08 20:25:51 +0100 (mar., 08 déc. 2009) | 4 lines Fix the transient refleaks in test_zipimport_support. Diagnosis and original patch by Florent Xicluna (flox). ........
* Merged revisions 76712 via svnmerge fromRonald Oussoren2009-12-081-2/+4
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76712 | ronald.oussoren | 2009-12-08 17:32:52 +0100 (Tue, 08 Dec 2009) | 4 lines Fix for issue 7452: HAVE_GCC_ASM_FOR_X87 gets set when doing a universal build on an i386 based machine, but should only be active when compiling the x86 part of the universal binary. ........
* Merged revisions 76708 via svnmerge fromAntoine Pitrou2009-12-083-6/+29
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76708 | antoine.pitrou | 2009-12-08 16:40:51 +0100 (mar., 08 déc. 2009) | 4 lines Issue #6986: Fix crash in the JSON C accelerator when called with the wrong parameter types. Patch by Victor Stinner. ........
* Merged revisions 76702,76704 via svnmerge fromTarek Ziadé2009-12-085-18/+150
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76702 | tarek.ziade | 2009-12-08 09:56:49 +0100 (Tue, 08 Dec 2009) | 1 line Issue #7457: added a read_pkg_file method to distutils.dist.DistributionMetadata so we can read back PKG-INFO files ........ r76704 | tarek.ziade | 2009-12-08 10:39:51 +0100 (Tue, 08 Dec 2009) | 1 line removed the usage of rfc822 in favor of email.message.Message ........
* Fix error message, for consistency with messages for % and //, and for ↵Mark Dickinson2009-12-071-1/+1
| | | | consistency with trunk
* Merged revisions 76692 via svnmerge fromMartin v. Löwis2009-12-061-17/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76692 | martin.v.loewis | 2009-12-06 19:27:29 +0100 (So, 06 Dez 2009) | 2 lines Add UUIDs for 2.7. Drop UUIDs for 2.4. ........
* logging: Improved support for SMTP over TLS.Vinay Sajip2009-12-061-6/+9
|
* logging: Added optional 'secure' parameter to SMTPHandler.Vinay Sajip2009-12-062-2/+13
|
* Blocked revisions 76551,76600 via svnmergeBenjamin Peterson2009-12-060-0/+0
| | | | | | | | | | | | ........ r76551 | vinay.sajip | 2009-11-27 08:03:36 -0600 (Fri, 27 Nov 2009) | 1 line Issue #7403: Fixed possible race condition in lock creation. ........ r76600 | raymond.hettinger | 2009-11-30 13:44:40 -0600 (Mon, 30 Nov 2009) | 3 lines Issue 7410: deepcopy of itertools.count resets the count ........
* Merged revisions 76684 via svnmerge fromTarek Ziadé2009-12-063-2/+21
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76684 | tarek.ziade | 2009-12-06 10:22:40 +0100 (Sun, 06 Dec 2009) | 1 line Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO Description field ........
* Issue #7435: Remove duplicate int/long tests, and otherMark Dickinson2009-12-0514-607/+64
| | | | references to long in py3k. Patch provided by flox.
* Blocked revisions 76679 via svnmergeBenjamin Peterson2009-12-050-0/+0
| | | | | | | | ........ r76679 | benjamin.peterson | 2009-12-05 12:48:13 -0600 (Sat, 05 Dec 2009) | 1 line fix date ........
* Blocked revisions 76672-76674,76676 via svnmergeBenjamin Peterson2009-12-050-0/+0
| | | | | | | | | | | | | | | | | | | | ........ r76672 | benjamin.peterson | 2009-12-05 11:45:40 -0600 (Sat, 05 Dec 2009) | 1 line regenerate pydoc_topics ........ r76673 | benjamin.peterson | 2009-12-05 11:46:33 -0600 (Sat, 05 Dec 2009) | 2 lines move RPM spec for 2.7 ........ r76674 | benjamin.peterson | 2009-12-05 11:47:56 -0600 (Sat, 05 Dec 2009) | 1 line bump version to 2.7a1 ........ r76676 | benjamin.peterson | 2009-12-05 12:40:02 -0600 (Sat, 05 Dec 2009) | 1 line post release version bump ........
* Merged revisions 76668 via svnmerge fromMark Dickinson2009-12-041-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76668 | mark.dickinson | 2009-12-04 11:30:16 +0000 (Fri, 04 Dec 2009) | 1 line Add missing issue number in Misc/NEWS entry. ........
* Blocked revisions 76665 via svnmergeMark Dickinson2009-12-040-0/+0
| | | | | | | | ........ r76665 | mark.dickinson | 2009-12-04 11:24:38 +0000 (Fri, 04 Dec 2009) | 2 lines Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). ........
* Issue #7430: Remove lingering reference to cmp in recursion error message.Mark Dickinson2009-12-041-1/+1
|
* Merged revisions 76659 via svnmerge fromR. David Murray2009-12-042-36/+36
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76659 | r.david.murray | 2009-12-03 18:57:59 -0500 (Thu, 03 Dec 2009) | 4 lines Issue 7431: use TESTFN in test_linecache instead of trying to create a file in the Lib/test directory, which might be read-only for the user running the tests. ........
* Merged revisions 76655 via svnmerge fromMartin v. Löwis2009-12-031-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76655 | martin.v.loewis | 2009-12-03 22:01:16 +0100 (Do, 03 Dez 2009) | 2 lines Add Christoph Gohlke, for the issue 4120 work. ........
* Merged revisions 76651 via svnmerge fromMartin v. Löwis2009-12-032-0/+26
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76651 | martin.v.loewis | 2009-12-03 21:53:51 +0100 (Do, 03 Dez 2009) | 3 lines Issue #4120: Drop reference to CRT from manifest when building extensions with msvc9compiler. ........
* Blocked revisions 76648 via svnmergeMark Dickinson2009-12-030-0/+0
| | | | | | | | | ........ r76648 | mark.dickinson | 2009-12-03 12:08:56 +0000 (Thu, 03 Dec 2009) | 3 lines Issue #6985: number of range() items should be constrained to lie in a Py_ssize_t, not an int. ........
* Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. ThisMark Dickinson2009-12-033-0/+51
| | | | | | was causing PyArg_ParseTupleAndKeywords(args, kwargs, "|CC", ...) to fail with a RuntimeError. Thanks Case Van Horsen for tracking down the source of this error.
* Merged revisions 76644 via svnmerge fromBenjamin Peterson2009-12-035-4/+225
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76644 | benjamin.peterson | 2009-12-02 20:52:39 -0600 (Wed, 02 Dec 2009) | 4 lines disable pymalloc tricks with the --with-valgrind option #2422 Patch from James Henstridge. ........
* Recorded merge of revisions 76642 via svnmerge fromPhilip Jenvey2009-12-031-3/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76642 | philip.jenvey | 2009-12-02 18:40:13 -0800 (Wed, 02 Dec 2009) | 1 line actually close files ........
* Merged revisions 76640 via svnmerge fromPhilip Jenvey2009-12-031-6/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76640 | philip.jenvey | 2009-12-02 18:25:54 -0800 (Wed, 02 Dec 2009) | 2 lines #7177: clarify the potential PIPE deadlock warnings ........
* Merged revisions 76636 via svnmerge fromAntoine Pitrou2009-12-027-3/+69
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76636 | antoine.pitrou | 2009-12-02 21:37:54 +0100 (mer., 02 déc. 2009) | 5 lines Issue #7333: The `posix` module gains an `initgroups()` function providing access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone. ........
* Merged revisions 76632 via svnmerge fromEric Smith2009-12-021-0/+35
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76632 | eric.smith | 2009-12-02 12:43:06 -0500 (Wed, 02 Dec 2009) | 1 line Issue #4482: Add tests for special float value formatting. ........
* Blocked revisions 76629 via svnmergeMark Dickinson2009-12-020-0/+0
| | | | | | | | | ........ r76629 | mark.dickinson | 2009-12-02 17:33:41 +0000 (Wed, 02 Dec 2009) | 3 lines Issue #7406: Fix some occurrences of potential signed overflow in int arithmetic. ........
* Merged revisions 76625 via svnmerge fromAmaury Forgeot d'Arc2009-12-013-0/+22
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76625 | amaury.forgeotdarc | 2009-12-01 22:51:04 +0100 (mar., 01 déc. 2009) | 3 lines #7419: Fix a crash on Windows in locale.setlocale() when the category is outside the allowed range. ........
* Merged revisions 76623 via svnmerge fromRonald Oussoren2009-12-011-0/+6
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76623 | ronald.oussoren | 2009-12-01 16:54:01 +0100 (Tue, 01 Dec 2009) | 9 lines Fix for issue #7416: SIZEOF_UINTPTR_T can be invalid when configuring a multi-architecture build (in particular when the architectures don't share a common pointer size). Fixed the same issue for SIZEOF_PTHREAD_T. (No update to the NEWS file because this is a bugfix for an as yet unreleased feature) ........