- 09 Aug, 2013 1 commit
-
-
R David Murray authored
This was triggered by wanting to make the doctest in email.policy.rst pass; as_bytes and __bytes__ are clearly useful now that we have BytesGenerator. Also updated the Message docs to document the policy keyword that was added in 3.3.
-
- 08 Aug, 2013 12 commits
-
-
Vinay Sajip authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
#18581: remove duplicate test and run a test class that was skipped. Initial patch by Vajrasky Kok.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
#18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make them discoverable by unittest. Patch by Zachary Ware.
-
Larry Hastings authored
in Modules/posixmodule.c is now far more robust.
-
- 07 Aug, 2013 2 commits
-
-
Eli Bendersky authored
-
Eli Bendersky authored
-
- 06 Aug, 2013 12 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Issue #18621: Prevent the site module's patched builtins from keeping too many references alive for too long.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Ezio Melotti authored
#18443: remove the TextMate entry now that the bundle has been removed and fix ordering. Patch by Févry Thibault.
-
Christian Heimes authored
-
Christian Heimes authored
-
Serhiy Storchaka authored
RGB -- YIQ conversions so that they match the FCC NTSC versions.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
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 Aug, 2013 8 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles.
-
Antoine Pitrou authored
-
Gregory P. Smith authored
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 authored
-
Mark Dickinson authored
-
Mark Dickinson authored
-
Mark Dickinson authored
-
- 04 Aug, 2013 5 commits
-
-
R David Murray authored
Patch by Madison May.
-
Raymond Hettinger authored
-
Terry Jan Reedy authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-