summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Assume nasm.Martin v. Löwis2012-05-181-2/+2
|
* merge 3.2Martin v. Löwis2012-05-187-10/+9
|\
| * Drop double quoting again. I'm at a loss when to quote and when not.Martin v. Löwis2012-05-181-1/+1
| |
| * Upgrade OpenSSL to 1.0.0jMartin v. Löwis2012-05-186-8/+9
| |
* | merge 3.2Martin v. Löwis2012-05-180-0/+0
|\ \ | |/
| * merge headsMartin v. Löwis2012-05-181-33/+9
| |\
* | \ merge headsMartin v. Löwis2012-05-181-33/+9
|\ \ \
| * | | Port to VS 2010.Martin v. Löwis2012-05-181-2/+2
| | | |
| * | | Merge 3.2 build_ssl changes.Martin v. Löwis2012-05-181-33/+9
| |\ \ \ | | | |/ | | |/|
| | * | Add another set of quotes to make cmd.exe happy.Martin v. Löwis2012-05-181-1/+1
| | | |
| | * | Fetch openssl directory from pyproject.vsprops.Martin v. Löwis2012-05-181-32/+8
| | | |
* | | | Remove outdated statements about threading and imports.Antoine Pitrou2012-05-182-27/+1
| | | |
* | | | Add a mention of the new import locks in whatsnew.Antoine Pitrou2012-05-171-0/+17
| | | |
* | | | MergeAntoine Pitrou2012-05-173-2/+6
|\ \ \ \
| * | | | Issue #13031: Small speed-up for tarfile when unzipping tarfiles.Ross Lagerwall2012-05-173-2/+6
| | | | | | | | | | | | | | | | | | | | Patch by Justin Peel.
* | | | | Make the test completely clean up after itself.Antoine Pitrou2012-05-171-2/+4
|/ / / /
* | | | Move import lock-related functions to a separate doc section.Antoine Pitrou2012-05-171-42/+43
| | | |
* | | | Issue #9260: A finer-grained import lock.Antoine Pitrou2012-05-1712-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 Pitrou2012-05-171-0/+4
| | | |
* | | | #14823: Simplify threading.Lock.acquire argument discussion.R David Murray2012-05-171-8/+5
|\ \ \ \ | | |_|/ | |/| |
| * | | #14823: Simplify threading.Lock.acquire argument discussion.R David Murray2012-05-171-8/+5
| | | |
* | | | Issue 14813: Fix Visual Studio 2008 build after the move into the PC/VS9.0Stefan Krah2012-05-1634-552/+925
| | | | | | | | | | | | | | | | directory.
* | | | Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use ↵Antoine Pitrou2012-05-165-7/+30
| | | | | | | | | | | | | | | | | | | | | | | | the default certificate store. Initial patch by James Oakley.
* | | | Issue #14779: Get sizeof(void *) directly rather than relying on sysconfig.Stefan Krah2012-05-162-4/+9
| | | |
* | | | Fix Visual Studio warning.Stefan Krah2012-05-161-1/+1
| | | |
* | | | Changes in _mpd_qexp():Stefan Krah2012-05-161-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.loadHynek Schlawack2012-05-161-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.loadHynek Schlawack2012-05-161-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 Pitrou2012-05-163-15/+17
| | | | | | | | | | | | | | | | always compiled, even if OpenSSL is present at build time.
* | | | merge headsGiampaolo Rodola'2012-05-1618-251/+498
|\ \ \ \
| * \ \ \ Forward port additional tests from 2.7 (issue #14829).Antoine Pitrou2012-05-161-3/+44
| |\ \ \ \ | | |/ / /
| | * | | Forward port additional tests from 2.7 (issue #14829).Antoine Pitrou2012-05-161-3/+44
| | | | |
| * | | | More .hgignore additions for new VS build filesAntoine Pitrou2012-05-161-1/+4
| | | | |
| * | | | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** ↵Antoine Pitrou2012-05-163-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 Pitrou2012-05-163-2/+6
| | | | | | | | | | | | | | | | | | | | 32) under 64-bit Windows.
| * | | | Avoid "warning: no newline at end of file" in importlib.h.Antoine Pitrou2012-05-162-1/+3
| | | | |
| * | | | Fix build failure.Antoine Pitrou2012-05-161-1/+2
| | | | |
| * | | | Issue #14732: The _csv module now uses PEP 3121 module initialization.Antoine Pitrou2012-05-163-35/+74
| | | | | | | | | | | | | | | | | | | | Patch by Robin Schreiber.
| * | | | Update .hgignore for new MSVC filesAntoine Pitrou2012-05-161-0/+4
| | | | |
| * | | | #14809: Add HTTP status codes from RFC 6585 to http.server and http.clientHynek Schlawack2012-05-165-1/+36
| | | | | | | | | | | | | | | | | | | | Patch by EungJun Yi.
| * | | | Merge from 3.2.Eric V. Smith2012-05-161-0/+3
| |\ \ \ \ | | |/ / /
| | * | | Cleanup so subsequent tests won't fail. Needs to be moved into a support ↵Eric V. Smith2012-05-161-0/+3
| | | | | | | | | | | | | | | | | | | | routine (see 14715).
| * | | | merge #1440472: reflowR David Murray2012-05-161-4/+3
| |\ \ \ \ | | |/ / /
| | * | | #1440472: reflowR David Murray2012-05-161-4/+3
| | | | |
| * | | | merge #1440472: Explain that email parser/generator isn't *quite* "idempotent"R David Murray2012-05-161-1/+11
| |\ \ \ \ | | |/ / /
| | * | | #1440472: Explain that email parser/generator isn't *quite* "idempotent"R David Murray2012-05-161-1/+11
| | | | |
| * | | | Issue #14777: mergeNed Deily2012-05-162-2/+32
| |\ \ \ \ | | |/ / /
| | * | | Issue #14777: In an X11 windowing environment, tkinter may returnNed Deily2012-05-162-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. Smith2012-05-161-1/+47
| |\ \ \ \ | | |/ / /
| | * | | Issue #14817: Add rudimentary tests for pkgutil.extend_path.Eric V. Smith2012-05-161-1/+47
| | | | |