Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update 3.5 Idle News up to 3.4.2 changes. | Terry Jan Reedy | 2014-10-01 | 1 | -0/+52 |
|\ | |||||
| * | Update Idle news for 3.4.2 (and 3.4.1). | Terry Jan Reedy | 2014-10-01 | 1 | -0/+57 |
| | | |||||
* | | Issue #16537: Use the new *default* parameter of max(). | Berker Peksag | 2014-10-01 | 1 | -3/+1 |
|\ \ | |/ | |||||
| * | Issue #16537: Use the new *default* parameter of max(). | Berker Peksag | 2014-10-01 | 1 | -3/+1 |
| | | |||||
* | | null merge | Ned Deily | 2014-09-30 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Fix overlooked conf.py setting in flattening of Doc directory. | Ned Deily | 2014-09-30 | 1 | -1/+1 |
| | | |||||
* | | Merge #21739: mention subtle difference between loops and listcomps in tutorial. | R David Murray | 2014-09-30 | 1 | -3/+8 |
|\ \ | |/ | |||||
| * | #21739: mention subtle difference between loops and listcomps in tutorial. | R David Murray | 2014-09-30 | 1 | -3/+8 |
| | | | | | | | | | | | | | | | | | | | | We don't want to go into a full explanation of scopes at this point in the tutorial, so we just mention that the loop creates or overwrites a persistent variable while the listcomp doesn't. Not mentioning this would lead someone to incorrectly assume loops and listcomps were *completely* equivalent, which would confuse them later. Original patch by Rose Ames, tweaked to remove the word 'scope'. | ||||
* | | Merge: #22512: move distutils rpm test's .rpmdb to testing tmpdir. | R David Murray | 2014-09-30 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #22512: move distutils rpm test's .rpmdb to testing tmpdir. | R David Murray | 2014-09-30 | 1 | -0/+3 |
| | | | | | | | | Patch by Francis MB. | ||||
* | | Issue #22333: test_threaded_import now displays elapsed time in verbose mode. | Victor Stinner | 2014-10-01 | 1 | -0/+4 |
| | | |||||
* | | Issue #22333: Extend timeout in test_threaded_import | Victor Stinner | 2014-10-01 | 1 | -1/+1 |
| | | | | | | | | | | | | Check if the sporadic failure is related to a timeout. The test just failed on the buildbot "x86 Windows7 3.x": 1 thread done / 20 (the 'done' condition was not signaled because 1 < 20). | ||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-09-30 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue 22465: grammar, number agreement. | Terry Jan Reedy | 2014-09-30 | 1 | -1/+1 |
| | | |||||
* | | merge with 3.4 | Georg Brandl | 2014-09-30 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵ | Georg Brandl | 2014-09-30 | 23 | -89/+8 |
| | | | | | | | | nested subdirectory anymore. | ||||
* | | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵ | Georg Brandl | 2014-09-30 | 23 | -90/+9 |
| | | | | | | | | nested subdirectory anymore. | ||||
* | | merge with 3.4 | Georg Brandl | 2014-09-30 | 1 | -1/+0 |
|\ \ | |/ | |||||
| * | Dont define an empty SPHINXOPTS, which overrides a definition from the ↵ | Georg Brandl | 2014-09-30 | 1 | -1/+0 |
| | | | | | | | | environment. | ||||
* | | merge with 3.4 | Georg Brandl | 2014-09-30 | 2 | -1/+3 |
|\ \ | |/ | |||||
| * | Prepare sphinx extensions for 1.3. | Georg Brandl | 2014-09-30 | 2 | -1/+3 |
| | | |||||
* | | merge 3.4 (#22528) | Benjamin Peterson | 2014-09-30 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | add link to pdb source (closes #22528) | Benjamin Peterson | 2014-09-30 | 1 | -0/+3 |
| | | |||||
* | | Reorganize C API docs of the exception API | Antoine Pitrou | 2014-09-30 | 1 | -151/+191 |
| | | |||||
* | | Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` ↵ | Antoine Pitrou | 2014-09-30 | 7 | -10/+39 |
| | | | | | | | | but accepting a `va_list` argument. | ||||
* | | (Merge 3.4) Issue #22448: asyncio, cleanup _run_once(), only iterate once to | Victor Stinner | 2014-09-30 | 1 | -4/+7 |
|\ \ | |/ | | | | | remove delayed calls that were cancelled. | ||||
| * | Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayed | Victor Stinner | 2014-09-30 | 1 | -4/+7 |
| | | | | | | | | calls that were cancelled. | ||||
* | | remove merge goop from f86fde20e9ce | Benjamin Peterson | 2014-09-30 | 1 | -65/+0 |
| | | |||||
* | | Remove pointless "vile hack" that can cause the build step to fail when some ↵ | Antoine Pitrou | 2014-09-30 | 2 | -20/+2 |
| | | | | | | | | | | | | extension modules can't be imported. See issue #5309 for the build failures, issue #458343 for the original motivation. | ||||
* | | (Merge 3.4) faulthandler: test_gil_released() now uses _sigsegv() instead of | Victor Stinner | 2014-09-30 | 2 | -17/+25 |
|\ \ | |/ | | | | | | | | | | | _read_null(), because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX. _read_null() and _sigabrt() don't accept parameters. | ||||
| * | faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(), | Victor Stinner | 2014-09-30 | 2 | -17/+25 |
| | | | | | | | | | | because _read_null() cannot be used on AIX. On AIX, reading from NULL is allowed: the first page of memory is a mapped read-only on AIX. | ||||
| * | faulthandler: _sigsegv() and _sigabrt() don't accept parameters | Victor Stinner | 2014-09-30 | 1 | -2/+2 |
| | | |||||
* | | faulthandler: suppress crash reporter directly in test functions written to | Victor Stinner | 2014-09-30 | 1 | -6/+41 |
| | | | | | | | | crash. | ||||
* | | (Merge 3.4) Issue #22396: On 32-bit AIX platform, don't expose | Victor Stinner | 2014-09-30 | 2 | -4/+16 |
|\ \ | |/ | | | | | | | os.posix_fadvise() nor os.posix_fallocate() because their prototypes in system headers are wrong. | ||||
| * | Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor | Victor Stinner | 2014-09-30 | 2 | -4/+15 |
| | | | | | | | | os.posix_fallocate() because their prototypes in system headers are wrong. | ||||
* | | Fix "warning: comparison between signed and unsigned integer expressions" | Gregory P. Smith | 2014-09-30 | 1 | -5/+5 |
| | | | | | | | | | | | | -Wsign-compare warnings in unicodeobject.c. These were all a result of sizeof() being unsigned and being compared to a Py_ssize_t. Not actual problems. | ||||
* | | merge 3.4 (#22520) | Benjamin Peterson | 2014-09-29 | 2 | -11/+20 |
|\ \ | |/ | |||||
| * | merge 3.3 (#22520) | Benjamin Peterson | 2014-09-29 | 2 | -11/+20 |
| |\ | |||||
| | * | prevent overflow in unicode_repr (closes #22520) | Benjamin Peterson | 2014-09-29 | 2 | -11/+20 |
| | | | |||||
* | | | merge 3.4 (#22517) | Benjamin Peterson | 2014-09-29 | 3 | -0/+11 |
|\ \ \ | |/ / | |||||
| * | | merge 3.3 (#22517) | Benjamin Peterson | 2014-09-29 | 3 | -0/+11 |
| |\ \ | | |/ | |||||
| | * | clear BufferedRWPair weakrefs on deallocation (closes #22517) | Benjamin Peterson | 2014-09-29 | 3 | -0/+11 |
| | | | |||||
* | | | fix windows tests (#16662) | Benjamin Peterson | 2014-09-29 | 1 | -14/+15 |
| | | | | | | | | | | | | From Robert Collins. | ||||
* | | | merge 3.4 | Benjamin Peterson | 2014-09-29 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | merge 3.3 | Benjamin Peterson | 2014-09-29 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | these variables ought to be Py_ssize_t | Benjamin Peterson | 2014-09-29 | 1 | -1/+1 |
| | | | |||||
* | | | merge 3.4 (#22519) | Benjamin Peterson | 2014-09-29 | 2 | -12/+18 |
|\ \ \ | |/ / | |||||
| * | | merge 3.3 (closes #22519) | Benjamin Peterson | 2014-09-29 | 2 | -12/+18 |
| |\ \ | | |/ | |||||
| | * | fix overflow checking in PyBytes_Repr (closes #22519) | Benjamin Peterson | 2014-09-29 | 2 | -12/+18 |
| | | | |||||
* | | | merge 3.4 (closes #22518) | Benjamin Peterson | 2014-09-29 | 2 | -17/+109 |
|\ \ \ | |/ / |