- 03 Oct, 2009 8 commits
-
-
Benjamin Peterson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75223 | benjamin.peterson | 2009-10-03 15:23:24 -0500 (Sat, 03 Oct 2009) | 1 line #7050 fix a SystemError when using tuple unpacking and augmented assignment ........
-
Mark Dickinson authored
Use size_t instead of int for a PyMem_MALLOC argument; silences a gcc 'comparison always false' warning.
-
Ezio Melotti authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Tarek Ziadé authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75209 | tarek.ziade | 2009-10-03 16:52:33 +0200 (Sat, 03 Oct 2009) | 1 line now uses the right exception type ........
-
Mark Dickinson authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75205 | mark.dickinson | 2009-10-03 11:14:34 +0100 (Sat, 03 Oct 2009) | 2 lines Issue #7028: Add note to hex() builtin docs pointing to float.hex(). ........
-
Tarek Ziadé authored
........ r75196 | tarek.ziade | 2009-10-03 02:07:35 +0200 (Sat, 03 Oct 2009) | 1 line removing the last remaning apply() calls ........
-
- 02 Oct, 2009 1 commit
-
-
Tarek Ziadé authored
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75192 | tarek.ziade | 2009-10-03 01:49:48 +0200 (Sat, 03 Oct 2009) | 1 line #6516 added owner/group support for tarfiles in Distutils ........
-
- 01 Oct, 2009 7 commits
-
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Antoine Pitrou authored
........ r75171 | antoine.pitrou | 2009-10-01 19:08:03 +0200 (jeu., 01 oct. 2009) | 4 lines Sync the 2.x `io` docs with py3k, with a small note as to the distinction between bytes streams and text streams. ........
-
Antoine Pitrou authored
-
Mark Dickinson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 30 Sep, 2009 1 commit
-
-
Mark Dickinson authored
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 ........
-
- 29 Sep, 2009 5 commits
-
-
Mark Dickinson authored
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. ........
-
Antoine Pitrou authored
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. ........
-
R. David Murray authored
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. ........
-
Raymond Hettinger authored
-
Philip Jenvey authored
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 ........
-
- 28 Sep, 2009 7 commits
-
-
Mark Dickinson authored
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). ........
-
R. David Murray authored
........ 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. ........
-
Mark Dickinson authored
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). ........
-
Mark Dickinson authored
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 ........
-
Mark Dickinson authored
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. ........
-
Kristján Valur Jónsson authored
http://bugs.python.org/issue6836 A missing 'const' wasn't detected by Visual Studio.
-
Kristján Valur Jónsson authored
Merging revisions 75103,75104 from trunk to py3k
-
- 27 Sep, 2009 6 commits
-
-
Kristján Valur Jónsson authored
Porting revision 75054 from trunk
-
Mark Dickinson authored
........ 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. ........
-
Benjamin Peterson authored
-
Mark Dickinson authored
........ 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. ........
-
Benjamin Peterson authored
-
Benjamin Peterson authored
(one which was strangely "resolved" by pgen) This also kills the unused testlist1 rule and fixes parse tree validation of extended unpacking.
-
- 26 Sep, 2009 5 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Ezio Melotti authored
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 ........
-
Ezio Melotti authored
-
R. David Murray authored
maintainer he's on the hook for it in maintainers unless he says otherwise.
-