summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* more stable urlBenjamin Peterson2009-10-011-1/+1
|
* fix opensearch versionBenjamin Peterson2009-10-011-1/+1
|
* Merged revisions 75157 via svnmerge fromMark Dickinson2009-09-301-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75157 | mark.dickinson | 2009-09-30 17:58:01 +0100 (Wed, 30 Sep 2009) | 1 line Fix buggy accuracy test ........
* Merged revisions 75141 via svnmerge fromMark Dickinson2009-09-293-3/+21
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75141 | mark.dickinson | 2009-09-29 20:01:06 +0100 (Tue, 29 Sep 2009) | 3 lines Issue #7019: Unmarshalling of bad long data could produce unnormalized PyLongs. Raise ValueError instead. ........
* [NOTE: the original bug doesn't exist in py3k but this adds Kirk's tests and ↵Antoine Pitrou2009-09-293-4/+27
| | | | | | | | | | | | | | | | | fixes another bug in the process] Merged revisions 75134 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75134 | antoine.pitrou | 2009-09-29 19:48:18 +0200 (mar., 29 sept. 2009) | 4 lines Issue #6790: Make it possible again to pass an `array.array` to `httplib.HTTPConnection.send`. Patch by Kirk McDonald. ........
* Merged revisions 75111 via svnmerge fromR. David Murray2009-09-291-7/+18
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75111 | r.david.murray | 2009-09-28 12:57:45 -0400 (Mon, 28 Sep 2009) | 5 lines Prevent test_bad_address failure when a domain in the dns search path implements a '*' default rule. Also update comment with a more complete explanation of the difficulties inherent in the test. ........
* Issue 7008: Better document str.title and show how to work around the ↵Raymond Hettinger2009-09-291-2/+22
| | | | apostrophe problem.
* Recorded merge of revisions 75123 via svnmerge fromPhilip Jenvey2009-09-293-1/+43
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75123 | philip.jenvey | 2009-09-28 21:32:44 -0700 (Mon, 28 Sep 2009) | 4 lines #6990: clear threading.local's key only after its thread state is removed: fixes local subclasses leaving old state around after a ref cycle GC which could be recycled by new locals ........
* Merged revisions 75117 via svnmerge fromMark Dickinson2009-09-285-35/+572
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75117 | mark.dickinson | 2009-09-28 19:54:55 +0100 (Mon, 28 Sep 2009) | 3 lines Issue #3366: Add gamma function to math module. (lgamma, erf and erfc to follow). ........
* Blocked revisions 75115 via svnmergeR. David Murray2009-09-280-0/+0
| | | | | | | | ........ r75115 | r.david.murray | 2009-09-28 14:29:28 -0400 (Mon, 28 Sep 2009) | 2 lines Applying patches backported from 3.1, by Gregor Lingl. ........
* Merged revisions 75110 via svnmerge fromMark Dickinson2009-09-281-7/+7
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75110 | mark.dickinson | 2009-09-28 17:52:40 +0100 (Mon, 28 Sep 2009) | 9 lines Style/consistency/nano-optimization nit: replace occurrences of (high_bits << PyLong_SHIFT) + low_bits with (high_bits << PyLong_SHIFT) | low_bits in Objects/longobject.c. Motivation: - shouldn't unnecessarily mix bit ops with arithmetic ops (style) - this pattern should be spelt the same way thoughout (consistency) - it's very very very slightly faster: no need to worry about carries to the high digit (nano-optimization). ........
* Recorded merge of revisions 75054 via svnmerge fromMark Dickinson2009-09-280-0/+0
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75054 | kristjan.jonsson | 2009-09-25 16:19:51 +0100 (Fri, 25 Sep 2009) | 2 lines http://bugs.python.org/issue6971 Adding the SIO_KEEPALIVE_VALS command to socket.ioctl on windows ........
* Recorded merge of revisions 75103-75104,75106 via svnmerge fromMark Dickinson2009-09-280-0/+0
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75103 | kristjan.jonsson | 2009-09-28 14:08:48 +0100 (Mon, 28 Sep 2009) | 2 lines http://bugs.python.org/issue6836 A memory block allocated with one API was being handed over to an object that used another API to release it. ........ r75104 | kristjan.jonsson | 2009-09-28 14:12:38 +0100 (Mon, 28 Sep 2009) | 2 lines http://bugs.python.org/issue6836 The debug memory api now keeps track of which external API (PyMem_* or PyObject_*) was used to allocate each block and treats any API violation as an error. Added separate _PyMem_DebugMalloc functions for the Py_Mem API instead of having it use the _PyObject_DebugMalloc functions. ........ r75106 | kristjan.jonsson | 2009-09-28 16:56:25 +0100 (Mon, 28 Sep 2009) | 2 lines http://bugs.python.org/issue6836 A missing 'const' wasn't detected by Visual Studio. ........
* merging revision 75106 from trunk:Kristján Valur Jónsson2009-09-281-1/+1
| | | | | http://bugs.python.org/issue6836 A missing 'const' wasn't detected by Visual Studio.
* http://bugs.python.org/issue6836Kristján Valur Jónsson2009-09-284-23/+108
| | | | Merging revisions 75103,75104 from trunk to py3k
* http://bugs.python.org/issue6971Kristján Valur Jónsson2009-09-272-15/+43
| | | | Porting revision 75054 from trunk
* Blocked revisions 75091 via svnmergeMark Dickinson2009-09-270-0/+0
| | | | | | | | ........ r75091 | mark.dickinson | 2009-09-27 17:39:28 +0100 (Sun, 27 Sep 2009) | 1 line Eliminate unnecessary get_wrapped_(u)long defines in struct module. ........
* use more correct callable replacementBenjamin Peterson2009-09-271-2/+2
|
* Blocked revisions 75084 via svnmergeMark Dickinson2009-09-270-0/+0
| | | | | | | | | ........ r75084 | mark.dickinson | 2009-09-27 17:05:21 +0100 (Sun, 27 Sep 2009) | 3 lines Issue #6713: Improve decimal int -> string conversions. Thanks Gawain Bolton for the suggestion and original patches. ........
* star_expr now always has two nodesBenjamin Peterson2009-09-271-3/+1
|
* fix an ambiguity in the grammar from the implementation of extended unpackingBenjamin Peterson2009-09-278-1005/+1039
| | | | | | | (one which was strangely "resolved" by pgen) This also kills the unused testlist1 rule and fixes parse tree validation of extended unpacking.
* fix default valueGeorg Brandl2009-09-261-1/+1
|
* use new style optional argsGeorg Brandl2009-09-261-1/+1
|
* Merged revisions 75070 via svnmerge fromEzio Melotti2009-09-263-10/+17
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75070 | ezio.melotti | 2009-09-26 14:20:53 +0300 (Sat, 26 Sep 2009) | 1 line #7000: document "sep" in capwords. Add a few tests ........
* string.capwords is still around, adding back the testsEzio Melotti2009-09-261-0/+8
|
* Andrew just committed a patch for curses, so since he's been theR. David Murray2009-09-261-1/+1
| | | | | maintainer he's on the hook for it in maintainers unless he says otherwise.
* fix print statementEzio Melotti2009-09-253-18/+17
|
* correct the fixpath.py script to work in Python 3 #6999Benjamin Peterson2009-09-251-9/+10
|
* fix print statementBenjamin Peterson2009-09-251-3/+3
|
* #6998: fix missing () on a printEzio Melotti2009-09-251-2/+2
|
* Merged revisions 75055 via svnmerge fromEzio Melotti2009-09-251-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75055 | ezio.melotti | 2009-09-25 19:07:55 +0300 (Fri, 25 Sep 2009) | 1 line #6994: fix typo in enumerate docstring ........
* Issue #1766304: The range.__contains__ optimization should only beMark Dickinson2009-09-242-1/+7
| | | | applied to ints, not to instances of subclasses of int.
* Merged revisions 75047 via svnmerge fromMark Dickinson2009-09-241-1/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75047 | mark.dickinson | 2009-09-24 20:21:07 +0100 (Thu, 24 Sep 2009) | 3 lines Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target. Thanks egreen. ........
* Silence compiler warningMark Dickinson2009-09-241-1/+2
|
* Merged revisions 75039 via svnmerge fromEzio Melotti2009-09-231-8/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75039 | ezio.melotti | 2009-09-24 00:36:39 +0300 (Thu, 24 Sep 2009) | 1 line improved phrasing, markup and example ........
* Add Robert Lehmann for issue #1766304 patchMark Dickinson2009-09-221-0/+1
|
* Issue #1766304: Optimize membership testing for ranges: 'n in range(...)'Mark Dickinson2009-09-224-0/+113
| | | | | does an O(1) check, if n is an integer. Non-integers aren't affected. Thanks Robert Lehmann.
* Merged revisions 75024 via svnmerge fromBrett Cannon2009-09-221-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75024 | brett.cannon | 2009-09-22 13:04:24 -0700 (Tue, 22 Sep 2009) | 1 line Fix a minor doc syntax typo. ........
* Merged revisions 75020 via svnmerge fromBrett Cannon2009-09-221-42/+43
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75020 | brett.cannon | 2009-09-22 12:13:27 -0700 (Tue, 22 Sep 2009) | 1 line Fix whitespace. ........
* #6969: make it explicit that configparser writes/reads text files, and fix ↵Georg Brandl2009-09-221-6/+9
| | | | the example.
* Merged revisions 74812 via svnmerge fromTarek Ziadé2009-09-221-1/+21
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74812 | ronald.oussoren | 2009-09-15 23:24:07 +0200 (Tue, 15 Sep 2009) | 3 lines Update distutils.util tests after my changes to --with-universal-archs ........
* Merged revisions 75011 via svnmerge fromBrett Cannon2009-09-223-10/+8
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75011 | brett.cannon | 2009-09-21 17:29:48 -0700 (Mon, 21 Sep 2009) | 10 lines When range checking was added to time.strftime() a check was placed on tm_isdst to make sure it fell within [-1, 1] just in case someone implementing strftime() in libc was stupid enough to assume this. Turns out, though, some OSs (e.g. zOS) are stupid enough to use values outside of this range for time structs created by the system itself. So instead of throwing a ValueError, tm_isdst is now normalized before being passed to strftime(). Fixes issue #6823. Thanks Robert Shapiro for diagnosing the problem and contributing an initial patch. ........
* Merged revisions 75007 via svnmerge fromAntoine Pitrou2009-09-213-7/+10
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75007 | antoine.pitrou | 2009-09-21 23:17:48 +0200 (lun., 21 sept. 2009) | 7 lines Issue #6236, #6348: Fix various failures in the io module under AIX and other platforms, when using a non-gcc compiler. Patch by egreen. In addition, I made explicit the signedness of all bitfields in the IO library. ........
* Merged revisions 75003 via svnmerge fromMark Dickinson2009-09-211-2/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75003 | mark.dickinson | 2009-09-21 17:16:44 +0100 (Mon, 21 Sep 2009) | 1 line Silence MSVC compiler warnings. ........
* Merged revisions 74994,74997 via svnmerge fromTarek Ziadé2009-09-215-1/+16
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74994 | tarek.ziade | 2009-09-21 15:41:08 +0200 (Mon, 21 Sep 2009) | 1 line #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils. ........ r74997 | tarek.ziade | 2009-09-21 15:49:57 +0200 (Mon, 21 Sep 2009) | 1 line forgot to commit a file in previous commit (r74994, issue #6954) ........
* Merged revisions 74992 via svnmerge fromTarek Ziadé2009-09-211-0/+22
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74992 | tarek.ziade | 2009-09-21 15:23:35 +0200 (Mon, 21 Sep 2009) | 1 line improving distutils coverage ........
* Merged revisions 74988 via svnmerge fromTarek Ziadé2009-09-217-6/+97
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74988 | tarek.ziade | 2009-09-21 14:19:07 +0200 (Mon, 21 Sep 2009) | 1 line improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch) ........
* Merged revisions 74984 via svnmerge fromDoug Hellmann2009-09-201-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74984 | doug.hellmann | 2009-09-20 16:44:13 -0400 (Sun, 20 Sep 2009) | 2 lines Fix markup for external links. ........
* Merged revisions 74978 via svnmerge fromRonald Oussoren2009-09-202-5881/+5195
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74978 | ronald.oussoren | 2009-09-20 22:05:44 +0200 (Sun, 20 Sep 2009) | 2 lines Fix typo in error message ........
* Merged revisions 74972 via svnmerge fromRonald Oussoren2009-09-208-716/+713
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74972 | ronald.oussoren | 2009-09-20 20:54:16 +0200 (Sun, 20 Sep 2009) | 5 lines Merge a newer version of libffi_osx, based on the version of libffi in OSX 10.6.1. This fixes issue6918 ........