- 29 Sep, 2009 8 commits
-
-
Ronald Oussoren authored
installs a version of Python that can build extensions on OSX 10.6.
-
Philip Jenvey authored
through the shell. also document the correct subprocess replacement for this case patch from Jean-Paul Calderone and Jani Hakala
-
Mark Dickinson authored
PyLongs. Raise ValueError instead.
-
Raymond Hettinger authored
-
Antoine Pitrou authored
`httplib.HTTPConnection.send`. Patch by Kirk McDonald.
-
Ronald Oussoren authored
to that README file with some explanation. * Be more strict in the configure script: complain loudly when the user has specified invalid combinations of OSX-specific configure arguments. The error message refers to the Mac/README file for more information.
-
Vinay Sajip authored
-
Philip Jenvey authored
fixes local subclasses leaving old state around after a ref cycle GC which could be recycled by new locals
-
- 28 Sep, 2009 8 commits
-
-
Mark Dickinson authored
(lgamma, erf and erfc to follow).
-
R. David Murray authored
-
R. David Murray authored
path implements a '*' default rule. Also update comment with a more complete explanation of the difficulties inherent in the test.
-
Mark Dickinson authored
(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).
-
Kristján Valur Jónsson authored
A missing 'const' wasn't detected by Visual Studio.
-
Kristján Valur Jónsson authored
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.
-
Kristján Valur Jónsson authored
A memory block allocated with one API was being handed over to an object that used another API to release it.
-
Skip Montanaro authored
Closes issue 6606.
-
- 27 Sep, 2009 4 commits
-
-
Michael Foord authored
-
Michael Foord authored
-
Mark Dickinson authored
-
Mark Dickinson authored
Bolton for the suggestion and original patches.
-
- 26 Sep, 2009 3 commits
-
-
Vinay Sajip authored
-
Ezio Melotti authored
-
Benjamin Peterson authored
-
- 25 Sep, 2009 3 commits
-
-
Andrew M. Kuchling authored
Bug noted by Trundle, patched by Trundle and Jerry Chen.
-
Ezio Melotti authored
-
Kristján Valur Jónsson authored
Adding the SIO_KEEPALIVE_VALS command to socket.ioctl on windows
-
- 24 Sep, 2009 1 commit
-
-
Mark Dickinson authored
Thanks egreen.
-
- 23 Sep, 2009 1 commit
-
-
Ezio Melotti authored
-
- 22 Sep, 2009 8 commits
-
-
Benjamin Peterson authored
-
Brett Cannon authored
-
Ronald Oussoren authored
ignores the '-isysroot' option on OSX when the corresponding SDK is not installed. This ensures that the user can compile extensions on OSX 10.6 using the Python.org installer and a default installation of Xcode.
-
Brett Cannon authored
-
Vinay Sajip authored
-
Ronald Oussoren authored
code, make this explicit in the C code to avoid confusing error messages during the build.
-
Georg Brandl authored
-
Brett Cannon authored
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.
-
- 21 Sep, 2009 4 commits
-
-
Antoine Pitrou authored
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.
-
Mark Dickinson authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-