- 17 Jun, 2012 1 commit
-
-
Meador Inge authored
Patch by Serhiy Storchaka.
-
- 16 Jun, 2012 14 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Patch by Serhiy Storchaka.
-
Stefan Krah authored
2) _mpd_qpow_mpd(): Abort the loop for all specials, not only infinity. 3) _mpd_qpow_mpd(): Make the function more general and distinguish between zero clamping and folding down the exponent. The latter case is currently handled by setting context->clamp to 0 before calling the function. 4) _mpd_qpow_int(): Add one to the work precision in case of a negative exponent. This is to get the same relative error (0.1 * 10**-prec) for both positive and negative exponents. The previous relative error for negative exponents was (0.2 * 10**-prec). Both errors are _before_ the final rounding to the context precision.
-
Victor Stinner authored
And don't use assert() anymore if check_maxchar is set: return -1 on error instead.
-
Eli Bendersky authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
Py_UCS4 buffer
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
- 15 Jun, 2012 1 commit
-
-
Victor Stinner authored
-
- 16 Jun, 2012 2 commits
-
-
Alexander Belopolsky authored
or datetime objects.
-
Brett Cannon authored
module name into consideration when determining whether a module is a package or not. This prevents importing a module's __init__ module directly and having it considered a package, which can lead to duplicate sub-modules. Thanks to Ronan Lamy for reporting the bug.
-
- 15 Jun, 2012 21 commits
-
-
Brett Cannon authored
that they are deprecated (previous commit documented this fact in the module docs).
-
Brett Cannon authored
iter_modules() requires iter_modules() be defined on an importer. The importers in importlib do not define this non-standard method.
-
Brett Cannon authored
-
Alexander Belopolsky authored
-
Richard Oudkerk authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
Patch by Serhiy Storchaka.
-
Richard Oudkerk authored
before resorting to terminate()
-
Richard Oudkerk authored
-
Petri Lehtinen authored
-
Petri Lehtinen authored
-
Richard Oudkerk authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Nick Coghlan authored
-
Nick Coghlan authored
Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting comparison function in hmac
-
Eli Bendersky authored
Skip XincludeTest entirely instead of just ignoring failures, because it may segfault, depending on the order of running tests
-
Eli Bendersky authored
Removed _SimpleElementPath and its flaky test. The test monkey-patches the module, which causes other failures and fails itself depending on the order tests are run.
-
Eli Bendersky authored
-
Eli Bendersky authored
-
Eli Bendersky authored
Replace the iter/itertext methods of Element in _elementtree with true C implementations, instead of the bootstrapped Python code. In addition to being cleaner (removing the last remains of the bootstrapping code in _elementtree), this gives a 10x performance boost for iter() on large documents. Also reorganized the tests a bit to be more robust.
-
- 14 Jun, 2012 1 commit
-
-
Antoine Pitrou authored
-