Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Assume nasm. | Martin v. Löwis | 2012-05-18 | 1 | -2/+2 |
| | |||||
* | merge 3.2 | Martin v. Löwis | 2012-05-18 | 7 | -10/+9 |
|\ | |||||
| * | Drop double quoting again. I'm at a loss when to quote and when not. | Martin v. Löwis | 2012-05-18 | 1 | -1/+1 |
| | | |||||
| * | Upgrade OpenSSL to 1.0.0j | Martin v. Löwis | 2012-05-18 | 6 | -8/+9 |
| | | |||||
* | | merge 3.2 | Martin v. Löwis | 2012-05-18 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | merge heads | Martin v. Löwis | 2012-05-18 | 1 | -33/+9 |
| |\ | |||||
* | \ | merge heads | Martin v. Löwis | 2012-05-18 | 1 | -33/+9 |
|\ \ \ | |||||
| * | | | Port to VS 2010. | Martin v. Löwis | 2012-05-18 | 1 | -2/+2 |
| | | | | |||||
| * | | | Merge 3.2 build_ssl changes. | Martin v. Löwis | 2012-05-18 | 1 | -33/+9 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Add another set of quotes to make cmd.exe happy. | Martin v. Löwis | 2012-05-18 | 1 | -1/+1 |
| | | | | |||||
| | * | | Fetch openssl directory from pyproject.vsprops. | Martin v. Löwis | 2012-05-18 | 1 | -32/+8 |
| | | | | |||||
* | | | | Remove outdated statements about threading and imports. | Antoine Pitrou | 2012-05-18 | 2 | -27/+1 |
| | | | | |||||
* | | | | Add a mention of the new import locks in whatsnew. | Antoine Pitrou | 2012-05-17 | 1 | -0/+17 |
| | | | | |||||
* | | | | Merge | Antoine Pitrou | 2012-05-17 | 3 | -2/+6 |
|\ \ \ \ | |||||
| * | | | | Issue #13031: Small speed-up for tarfile when unzipping tarfiles. | Ross Lagerwall | 2012-05-17 | 3 | -2/+6 |
| | | | | | | | | | | | | | | | | | | | | Patch by Justin Peel. | ||||
* | | | | | Make the test completely clean up after itself. | Antoine Pitrou | 2012-05-17 | 1 | -2/+4 |
|/ / / / | |||||
* | | | | Move import lock-related functions to a separate doc section. | Antoine Pitrou | 2012-05-17 | 1 | -42/+43 |
| | | | | |||||
* | | | | Issue #9260: A finer-grained import lock. | Antoine Pitrou | 2012-05-17 | 12 | -3010/+3746 |
| | | | | | | | | | | | | | | | | | | | | Most of the import sequence now uses per-module locks rather than the global import lock, eliminating well-known issues with threads and imports. | ||||
* | | | | Add mention of decoding optimizations in the what's new document. | Antoine Pitrou | 2012-05-17 | 1 | -0/+4 |
| | | | | |||||
* | | | | #14823: Simplify threading.Lock.acquire argument discussion. | R David Murray | 2012-05-17 | 1 | -8/+5 |
|\ \ \ \ | | |_|/ | |/| | | |||||
| * | | | #14823: Simplify threading.Lock.acquire argument discussion. | R David Murray | 2012-05-17 | 1 | -8/+5 |
| | | | | |||||
* | | | | Issue 14813: Fix Visual Studio 2008 build after the move into the PC/VS9.0 | Stefan Krah | 2012-05-16 | 34 | -552/+925 |
| | | | | | | | | | | | | | | | | directory. | ||||
* | | | | Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use ↵ | Antoine Pitrou | 2012-05-16 | 5 | -7/+30 |
| | | | | | | | | | | | | | | | | | | | | | | | | the default certificate store. Initial patch by James Oakley. | ||||
* | | | | Issue #14779: Get sizeof(void *) directly rather than relying on sysconfig. | Stefan Krah | 2012-05-16 | 2 | -4/+9 |
| | | | | |||||
* | | | | Fix Visual Studio warning. | Stefan Krah | 2012-05-16 | 1 | -1/+1 |
| | | | | |||||
* | | | | Changes in _mpd_qexp(): | Stefan Krah | 2012-05-16 | 1 | -46/+117 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ----------------------- 1) Reduce the number of iterations in the Horner scheme for operands with a negative adjusted exponent. Previously the number was overestimated quite generously. 2) The function _mpd_get_exp_iterations() now has an ACL2 proof and is rewritten accordingly. 3) The proof relies on abs(op) > 9 * 10**(-prec-1), so operands without that property are now handled by the new function _mpd_qexp_check_one(). 4) The error analysis for the evaluation of the truncated Taylor series in Hull&Abrham's paper relies on the fact that the reduced operand 'r' has fewer than context.prec digits. Since the operands may have more than context.prec digits, a new ACL2 proof covers the case that r.digits > context.prec. To facilitate the proof, the Horner step now uses fma instead of rounding twice in multiply/add. Changes in mpd_qexp(): ---------------------- 1) Fix a bound in the correct rounding loop that was too optimistic. In practice results were always correctly rounded, because it is unlikely that the error in _mpd_qexp() ever reaches the theoretical maximum. | ||||
* | | | | #14692 Fix json docs to reflect changes in json.load | Hynek Schlawack | 2012-05-16 | 1 | -2/+2 |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | The behaviour of the parse_constant callback changed insofar that 'null', 'true', 'false' don't trigger its call anymore. Patch by Serhiy Storchaka | ||||
| * | | | #14692 Fix json docs to reflect changes in json.load | Hynek Schlawack | 2012-05-16 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The behaviour of the parse_constant callback changed insofar that 'null', 'true', 'false' don't trigger its call anymore. Patch by Serhiy Storchaka | ||||
* | | | | Issue #14693: Under non-Windows platforms, hashlib's fallback modules are ↵ | Antoine Pitrou | 2012-05-16 | 3 | -15/+17 |
| | | | | | | | | | | | | | | | | always compiled, even if OpenSSL is present at build time. | ||||
* | | | | merge heads | Giampaolo Rodola' | 2012-05-16 | 18 | -251/+498 |
|\ \ \ \ | |||||
| * \ \ \ | Forward port additional tests from 2.7 (issue #14829). | Antoine Pitrou | 2012-05-16 | 1 | -3/+44 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | Forward port additional tests from 2.7 (issue #14829). | Antoine Pitrou | 2012-05-16 | 1 | -3/+44 |
| | | | | | |||||
| * | | | | More .hgignore additions for new VS build files | Antoine Pitrou | 2012-05-16 | 1 | -1/+4 |
| | | | | | |||||
| * | | | | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** ↵ | Antoine Pitrou | 2012-05-16 | 3 | -3/+6 |
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | 32) under 64-bit Windows. (untested, because of Windows build issues under 3.x) | ||||
| | * | | | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** ↵ | Antoine Pitrou | 2012-05-16 | 3 | -2/+6 |
| | | | | | | | | | | | | | | | | | | | | 32) under 64-bit Windows. | ||||
| * | | | | Avoid "warning: no newline at end of file" in importlib.h. | Antoine Pitrou | 2012-05-16 | 2 | -1/+3 |
| | | | | | |||||
| * | | | | Fix build failure. | Antoine Pitrou | 2012-05-16 | 1 | -1/+2 |
| | | | | | |||||
| * | | | | Issue #14732: The _csv module now uses PEP 3121 module initialization. | Antoine Pitrou | 2012-05-16 | 3 | -35/+74 |
| | | | | | | | | | | | | | | | | | | | | Patch by Robin Schreiber. | ||||
| * | | | | Update .hgignore for new MSVC files | Antoine Pitrou | 2012-05-16 | 1 | -0/+4 |
| | | | | | |||||
| * | | | | #14809: Add HTTP status codes from RFC 6585 to http.server and http.client | Hynek Schlawack | 2012-05-16 | 5 | -1/+36 |
| | | | | | | | | | | | | | | | | | | | | Patch by EungJun Yi. | ||||
| * | | | | Merge from 3.2. | Eric V. Smith | 2012-05-16 | 1 | -0/+3 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | Cleanup so subsequent tests won't fail. Needs to be moved into a support ↵ | Eric V. Smith | 2012-05-16 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | routine (see 14715). | ||||
| * | | | | merge #1440472: reflow | R David Murray | 2012-05-16 | 1 | -4/+3 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | #1440472: reflow | R David Murray | 2012-05-16 | 1 | -4/+3 |
| | | | | | |||||
| * | | | | merge #1440472: Explain that email parser/generator isn't *quite* "idempotent" | R David Murray | 2012-05-16 | 1 | -1/+11 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | #1440472: Explain that email parser/generator isn't *quite* "idempotent" | R David Murray | 2012-05-16 | 1 | -1/+11 |
| | | | | | |||||
| * | | | | Issue #14777: merge | Ned Deily | 2012-05-16 | 2 | -2/+32 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | Issue #14777: In an X11 windowing environment, tkinter may return | Ned Deily | 2012-05-16 | 2 | -2/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | undecoded UTF-8 bytes as a string when accessing the Tk clipboard. Modify clipboad_get() to first request type UTF8_STRING when no specific type is requested in an X11 windowing environment, falling back to the current default type STRING if that fails. Original patch by Thomas Kluyver. | ||||
| * | | | | Merge from 3.2. | Eric V. Smith | 2012-05-16 | 1 | -1/+47 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | Issue #14817: Add rudimentary tests for pkgutil.extend_path. | Eric V. Smith | 2012-05-16 | 1 | -1/+47 |
| | | | | |