- 30 Jul, 2013 15 commits
-
-
R David Murray authored
-
R David Murray authored
testcleanup directive is new as of 1.1, and we are currently running 1.0.7. But using testsetup works just as well, and avoids the unknown directive error when building the docs.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
-
Christian Heimes authored
'SHA1' instead of 'SHA'. Add more tests for hashlib and hash object attributes
-
Christian Heimes authored
-
Christian Heimes authored
'SHA1' instead of 'SHA'.
-
Eli Bendersky authored
-
Eli Bendersky authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 29 Jul, 2013 6 commits
-
-
R David Murray authored
-
R David Murray authored
With the exception of the 'as_string' call in the policy docs. That one is a separate issue. Note that when building the docs sphinx is complaining about .. testcleanup:: being an invalid directive. I don't know why this is, as I'm following the sphinx docs...but fortunately the action is to omit the text in the body, so the generated documentation is correct.
-
Nick Coghlan authored
-
Nick Coghlan authored
With help from jkloth on IRC, so it will hopefully work this time :)
-
Nick Coghlan authored
-
Nick Coghlan authored
-
- 28 Jul, 2013 15 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
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 4 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch from Phil Connell.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-