- 06 Agu, 2013 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Letting the compiler decide how to optimize the multiply by five gives it the freedom to make better choices for the best technique for a given target machine. For example, GCC on x86_64 produces a little bit better code: Old-way (3 steps with a data dependency between each step): shrq $5, %r13 leaq 1(%rbx,%r13), %rax leaq (%rax,%rbx,4), %rbx New-way (3 steps with no dependency between the first two steps which can be run in parallel): leaq (%rbx,%rbx,4), %rax # i*5 shrq $5, %r13 # perturb >>= PERTURB_SHIFT leaq 1(%r13,%rax), %rbx # 1 + perturb + i*5
-
- 05 Agu, 2013 8 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles.
-
Antoine Pitrou yazdı
-
Gregory P. Smith yazdı
evil assert statements. * Add an additional assert to the new test_name_attribute test that actually confirms that a hash created using each h.name results in a new hash sharing the same name.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
- 04 Agu, 2013 5 kayıt (commit)
-
-
R David Murray yazdı
Patch by Madison May.
-
Raymond Hettinger yazdı
-
Terry Jan Reedy yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 03 Agu, 2013 1 kayıt (commit)
-
-
Jason R. Coombs yazdı
Issue 18532: Added tests and documentation to formally specify the .name attribute on hashlib objects.
-
- 04 Agu, 2013 19 kayıt (commit)
-
-
R David Murray yazdı
-
Raymond Hettinger yazdı
-
Terry Jan Reedy yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Raymond Hettinger yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
(Original patch by Mark Dickinson.)
-
Raymond Hettinger yazdı
-
Ethan Furman yazdı
-
Charles-François Natali yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Eli Bendersky yazdı
Based on patch by Aaron Oakley
-
Eli Bendersky yazdı
-
Eli Bendersky yazdı
-
Eli Bendersky yazdı
Thanks to Stefan Behnel for the report and proposed solution & test.
-
- 03 Agu, 2013 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Larry Hastings yazdı
-