summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | merge with 3.3Georg Brandl2013-10-061-2/+2
|\ \ | |/
| * Fix prefix_chars not being applied in help text example (reported by John ↵Georg Brandl2013-10-061-2/+2
| | | | | | | | Kooker on docs@)
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix markup to not add parens to the "hashlib.md5" constructor when the ↵Georg Brandl2013-10-061-1/+1
| | | | | | | | object is meant, not the call.
* | merge with 3.3Georg Brandl2013-10-061-1/+0
|\ \ | |/
| * Remove newline in method that makes it possible to copy example to the ↵Georg Brandl2013-10-061-1/+0
| | | | | | | | interactive interpreter.
* | merge with 3.3Georg Brandl2013-10-061-3/+0
|\ \ | |/
| * Remove dead link to effbot Tkinter introduction material (reported by Ralf ↵Georg Brandl2013-10-061-3/+0
| | | | | | | | Ganswindt from docs@)
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix: Element.text is an attribute, not a method (report by Cameron Laird on ↵Georg Brandl2013-10-061-1/+1
| | | | | | | | docs@)
* | merge with 3.3Georg Brandl2013-10-061-2/+2
|\ \ | |/
| * Fix "customer timer" -> "custom timer" (reported by Kirk Strauser on docs@)Georg Brandl2013-10-061-2/+2
| |
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix ZeroDivisionError message (reported by Pavel Fedotov on docs@)Georg Brandl2013-10-061-1/+1
| |
* | mergeRaymond Hettinger2013-10-060-0/+0
|\ \ | |/
| * Issue 14927: Remove a docstring line that is no longer applicable.Raymond Hettinger2013-10-061-1/+0
| |
* | Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-12/+17
|\ \ | |/
| * Minor clean-up of function parameters in random().Raymond Hettinger2013-10-061-11/+17
| |
* | mergeRaymond Hettinger2013-10-0615-190/+234
|\ \
| * \ Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-4/+10
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | | | | Reduce the base by the modulus when the base is larger than the modulus. This can unboundedly speed the "startup costs" of doing modular exponentiation, particularly in cases where the base is much larger than the modulus. Original patch by Armin Rigo, inspired by https://github.com/pyca/ed25519. Merged from 3.3.
| | * Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | Reduce the base by the modulus when the base is larger than the modulus. This can unboundedly speed the "startup costs" of doing modular exponentiation, particularly in cases where the base is much larger than the modulus. Original patch by Armin Rigo, inspired by https://github.com/pyca/ed25519.
| * | #19069: merge with 3.3.Ezio Melotti2013-10-051-11/+11
| |\ \ | | |/
| | * #19069: use imperative mood in float object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-051-11/+11
| | |
| * | #19068: merge with 3.3.Ezio Melotti2013-10-051-2/+2
| |\ \ | | |/
| | * #19068: use imperative mood in complex object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-051-2/+2
| | |
| * | #19067: merge with 3.3.Ezio Melotti2013-10-051-3/+3
| |\ \ | | |/
| | * #19067: use imperative mood in range object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-051-3/+3
| | |
| * | fix commentBenjamin Peterson2013-10-051-1/+1
| | |
| * | Hopefully fix Windows compilation error following 499a96611baaAntoine Pitrou2013-10-051-10/+10
| | |
| * | Issue #19087: Improve bytearray allocation in order to allow cheap popping ↵Antoine Pitrou2013-10-055-151/+182
| | | | | | | | | | | | of data at the front (slice deletion).
| * | [issue 19152] Add versionadded for ExtensionFileLoader.get_filename().Eric Snow2013-10-051-0/+2
| | |
| * | [issue 19152] Ensure we have actually registered ExtensionFileLoader as an ↵Eric Snow2013-10-052-2/+3
| | | | | | | | | | | | ExecutionLoader.
| * | Add missing comma.Ezio Melotti2013-10-051-1/+1
| | |
| * | #19148: fix markup errors and wording in enum docs. Patch by Esa Peuha.Ezio Melotti2013-10-052-7/+8
| | |
| * | #19166: merge with 3.3.Ezio Melotti2013-10-051-0/+3
| |\ \ | | |/
| | * #19166: use an unused var in a test. Patch by Vajrasky Kok.Ezio Melotti2013-10-051-0/+3
| | |
* | | Issue #19169: Micro refactoring with a micro benefit for brevity and speed.Raymond Hettinger2013-10-061-2/+2
| | |
* | | Strengthen one of the collections.Counter() testsRaymond Hettinger2013-10-061-0/+2
|/ /
* | mergeRaymond Hettinger2013-10-042-14/+39
|\ \ | |/
| * Issue #18594: Make the C code more closely match the pure python code.Raymond Hettinger2013-10-042-14/+39
| |
* | Issue #16803: Run test.test_importlib.test_abc under bothBrett Cannon2013-10-042-120/+308
| | | | | | | | _frozen_importlib and source.
* | Issue #18716: Deprecate the formatter moduleBrett Cannon2013-10-045-8/+19
| |
* | MERGE: Close #19160: Inconsistent size for GIL release in hashlibJesus Cea2013-10-041-2/+2
|\ \ | |/
| * Close #19160: Inconsistent size for GIL release in hashlibJesus Cea2013-10-041-2/+2
| |
* | MERGE: Close #19160: Inconsistent size for GIL release in hashlibJesus Cea2013-10-041-1/+1
|\ \ | |/
| * Close #19160: Inconsistent size for GIL release in hashlibJesus Cea2013-10-041-1/+1
| |
* | Null merge with 3.3.Eric Snow2013-10-030-0/+0
|\ \ | |/
| * [issue19152] Revert 832579dbafd6.Eric Snow2013-10-035-224/+193
| |
* | Fix typo.Eric Snow2013-10-031-1/+1
|\ \ | |/
| * Fix typo.Eric Snow2013-10-031-1/+1
| |