Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | Make pydoctheme compatible with Sphinx 1.3 HTML output changes. | Georg Brandl | 2014-10-01 | 1 | -4/+4 | |
| | | | | ||||||
* | | | | 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 | |
| | | | | ||||||
* | | | | Fix overlooked conf.py setting in flattening of Doc directory. | Ned Deily | 2014-10-01 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | #21739: mention subtle difference between loops and listcomps in tutorial. | R David Murray | 2014-10-01 | 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'. | |||||
* | | | | #22512: move distutils rpm test's .rpmdb to testing tmpdir. | R David Murray | 2014-10-01 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | Patch by Francis MB. | |||||
* | | | | Issue 22465: grammar, number agreement. | Terry Jan Reedy | 2014-09-30 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | 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. | |||||
* | | | | Dont define an empty SPHINXOPTS, which overrides a definition from the ↵ | Georg Brandl | 2014-09-30 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | environment. | |||||
* | | | | Prepare sphinx extensions for 1.3. | Georg Brandl | 2014-09-30 | 2 | -1/+3 | |
| | | | | ||||||
* | | | | add link to pdb source (closes #22528) | Benjamin Peterson | 2014-09-30 | 1 | -0/+3 | |
| | | | | ||||||
* | | | | Issue #22448: asyncio, cleanup _run_once(), only iterate once to remove delayed | Victor Stinner | 2014-09-30 | 1 | -4/+7 | |
| | | | | | | | | | | | | | | | | calls that were cancelled. | |||||
* | | | | 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 | |
| | | | | ||||||
* | | | | 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. | |||||
* | | | | merge 3.3 (#22520) | Benjamin Peterson | 2014-09-30 | 2 | -11/+20 | |
|\ \ \ \ | | |/ / | |/| | | ||||||
| * | | | prevent overflow in unicode_repr (closes #22520) | Benjamin Peterson | 2014-09-30 | 2 | -11/+20 | |
| | | | | ||||||
* | | | | merge 3.3 (#22517) | Benjamin Peterson | 2014-09-30 | 3 | -0/+11 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | clear BufferedRWPair weakrefs on deallocation (closes #22517) | Benjamin Peterson | 2014-09-30 | 3 | -0/+11 | |
| | | | | ||||||
* | | | | 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.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.3 (closes #22518) | Benjamin Peterson | 2014-09-29 | 2 | -17/+49 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | NEWS issue for #22518 | Benjamin Peterson | 2014-09-29 | 1 | -0/+2 | |
| | | | | ||||||
| * | | | cleanup overflowing handling in unicode_decode_call_errorhandler and ↵ | Benjamin Peterson | 2014-09-29 | 1 | -18/+56 | |
| | | | | | | | | | | | | | | | | unicode_encode_ucs1 (closes #22518) | |||||
* | | | | #20135: FAQ entry for list mutation. (See also 6375bf34fff6.) | R David Murray | 2014-09-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I accidentally committed this in 6375bf34fff6; this changeset addresses the last review comments on the patch. This is a perennial question and something someone opens a ticket for probably every other month or so, so I'm surprised we didn't already have a FAQ entry for it. The original patch was written by M. Votz, refined first by Ezio Melotti and further refined by me. | |||||
* | | | | check that exception messages are not empty (#22379) | Benjamin Peterson | 2014-09-28 | 4 | -15/+13 | |
| | | | | | | | | | | | | | | | | Patch by Yongzhi Pan. | |||||
* | | | | #10510: Fix bug in forward port of 2.7 distutils patch. | R David Murray | 2014-09-28 | 3 | -3/+77 | |
| | | | | | | | | | | | | | | | | Pointed out by Arfrever. | |||||
* | | | | Revert #22251 | Berker Peksag | 2014-09-27 | 18 | -38/+6 | |
| | | | | ||||||
* | | | | #10510: make distuitls upload/register use HTML standards compliant CRLF. | R David Murray | 2014-09-27 | 4 | -6/+10 | |
| | | | | | | | | | | | | | | | | Patch by Ian Cordasco, approved by Éric Araujo. | |||||
* | | | | Issue #22251: Fix ReST markup to avoid errors building docs. | Berker Peksag | 2014-09-27 | 18 | -6/+38 | |
| | | | | ||||||
* | | | | Merge heads. | Berker Peksag | 2014-09-27 | 3 | -1/+10 | |
|\ \ \ \ | ||||||
| * | | | | Issue #16537: Check whether self.extensions is empty in setup.py. | Berker Peksag | 2014-09-27 | 3 | -1/+10 | |
| | | | | | | | | | | | | | | | | | | | | Patch by Jonathan Hosmer. | |||||
* | | | | | #18854: make it explicit that is_multipart does not mean 'multipart/xxx'. | R David Murray | 2014-09-27 | 1 | -17/+54 | |
|/ / / / | | | | | | | | | | | | | Original patch (and the idea of using _structure) by Abhilash Raj. | |||||
* | | | | #20974: Update version table in email intro. | R David Murray | 2014-09-27 | 1 | -3/+7 | |
| | | | | | | | | | | | | | | | | | | | | Note that the email version string in 3.3 and 3.4 is inaccurate, since it still exists but wasn't updated while the code was. | |||||
* | | | | Issue #9850: Fixed macpath.join() for empty first component. Patch by | Serhiy Storchaka | 2014-09-27 | 3 | -1/+28 | |
| | | | | | | | | | | | | | | | | Oleg Oshmyan. | |||||
* | | | | tempfile: Fix docstring. Issue #21397, patch by R. David Murray. | Yury Selivanov | 2014-09-26 | 1 | -5/+5 | |
| | | | | ||||||
* | | | | Issue #17462: Add a paragraph about advantages of argparse over optparse. | Berker Peksag | 2014-09-26 | 2 | -0/+11 | |
| | | | | | | | | | | | | | | | | Patch by Anastasia Filatova. | |||||
* | | | | asyncio.test_tasks: Fix test_env_var_debug to use correct asyncio module | Yury Selivanov | 2014-09-25 | 1 | -4/+11 | |
| | | | | ||||||
* | | | | asyncio: Improve canceled timer handles cleanup. Closes issue #22448. | Yury Selivanov | 2014-09-25 | 5 | -26/+159 | |
| | | | | | | | | | | | | | | | | Patch by Joshua Moore-Oliva. | |||||
* | | | | asyncio.unix_events: Move import statement to match tulip code | Yury Selivanov | 2014-09-25 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | allow archives for rc releases to be built (closes #22484) | Benjamin Peterson | 2014-09-25 | 1 | -2/+3 | |
| | | | | ||||||
* | | | | test_faulthandler: fix typo | Victor Stinner | 2014-09-24 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Apply asyncio Task English fixes to docstrings as well. | R David Murray | 2014-09-24 | 1 | -9/+10 | |
| | | | | | | | | | | | | | | | | Also fixed the phrasing in a comment. | |||||
* | | | | Improve English phrasing in asyncio task docs. | R David Murray | 2014-09-24 | 1 | -9/+9 | |
| | | | | ||||||
* | | | | Issue #16056: Rename test method in test_statistics to avoid conflict. | Berker Peksag | 2014-09-24 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Issue #22427: TemporaryDirectory no longer attempts to clean up twice when | Serhiy Storchaka | 2014-09-24 | 3 | -12/+30 | |
| | | | | | | | | | | | | | | | | used in the with statement in generator. | |||||
* | | | | Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. | Berker Peksag | 2014-09-24 | 2 | -3/+6 | |
| | | | | | | | | | | | | | | | | Patch by Terry Chia. | |||||
* | | | | Merge heads | Serhiy Storchaka | 2014-09-23 | 1 | -2/+0 | |
|\ \ \ \ |