- 28 Jul, 2013 11 commits
-
-
Nick Coghlan authored
-
Nick Coghlan authored
Patch by Chris Jerdonek
-
Nick Coghlan authored
-
Nick Coghlan authored
Also including this change in 3.3 to help avoid spurious conflicts between the two most active branches. (Initial patch by Indra Talip)
-
Nick Coghlan authored
Initial patch by Indra Talip
-
Nick Coghlan authored
Initial patch by Daniel Urban and Aaron Iles
-
Raymond Hettinger authored
The former block size traded away good fit within cache lines in order to gain faster division in deque_item(). However, compilers are getting smarter and can now replace the slow division operation with a fast integer multiply and right shift. Accordingly, it makes sense to go back to a size that lets blocks neatly fill entire cache-lines. GCC-4.8 and CLANG 4.0 both compute "x // 62" with something roughly equivalent to "x * 9520900167075897609 >> 69".
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Victor Stinner authored
-
Victor Stinner authored
-
- 27 Jul, 2013 9 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch from Phil Connell.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Raymond Hettinger authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
* handle _PyMem_RawStrdup() failure * Py_FrozenMain() releases memory on error * Py_FrozenMain() duplicates the old locale, as done in main()
-
Victor Stinner authored
done in main()
-
- 26 Jul, 2013 20 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Replace 8 spaces with 4.
-
Victor Stinner authored
Replace 8 spaces with 4.
-
Christian Heimes authored
CID 486199
-
Christian Heimes authored
CID 486199
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Victor Stinner authored
The exception is printed if sqlite3.enable_callback_tracebacks(True) has been called, otherwise the exception is cleared.
-
Christian Heimes authored
-
Christian Heimes authored
CID 1058280
-
Christian Heimes authored
CID 1058280
-
Christian Heimes authored
X509_get_version() grows beyond our small int cache. CID 1058279
-