Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #25523: Merge a-to-an corrections from 3.4. | Serhiy Storchaka | 2015-11-02 | 2 | -2/+2 |
|\ | |||||
| * | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 2 | -2/+2 |
| | | |||||
* | | Issue #25523: Further a-to-an corrections new in 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | | |||||
* | | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 2 | -16/+16 |
|\ \ | |/ | |||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 2 | -16/+16 |
| | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | | Issue #25510: fileinput.FileInput.readline() now returns b'' instead of '' | Serhiy Storchaka | 2015-11-01 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | at the end if the FileInput was opened with binary mode. Patch by Ryosuke Ito. | ||||
| * | Issue #25510: fileinput.FileInput.readline() now returns b'' instead of '' | Serhiy Storchaka | 2015-11-01 | 1 | -0/+4 |
| | | | | | | | | | | at the end if the FileInput was opened with binary mode. Patch by Ryosuke Ito. | ||||
* | | Issue #25395: Fixed crash when highly nested OrderedDict structures were | Serhiy Storchaka | 2015-11-01 | 1 | -0/+3 |
| | | | | | | | | garbage collected. | ||||
* | | Issue #25450: Updates shortcuts to start Python in installation directory. | Steve Dower | 2015-10-31 | 1 | -0/+2 |
| | | |||||
* | | Merge spelling fixes from 3.4 into 3.5 | Martin Panter | 2015-10-31 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix some spelling errors in documentation and code comments | Martin Panter | 2015-10-31 | 2 | -2/+2 |
| | | |||||
* | | always use os.urandom for the uuid4 algorithm (closes #25515) | Benjamin Peterson | 2015-10-30 | 1 | -0/+2 |
| | | |||||
* | | Issue #25503: Fixed inspect.getdoc() for inherited docstrings of properties. | Serhiy Storchaka | 2015-10-29 | 2 | -0/+4 |
| | | | | | | | | Original patch by John Mark Vandenberg. | ||||
* | | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 2 | -0/+5 |
|\ \ | |/ | | | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. | ||||
| * | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 2 | -0/+5 |
| | | | | | | | | | | whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. | ||||
* | | merge 3.4 (#25471) | Benjamin Peterson | 2015-10-25 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471) | Benjamin Peterson | 2015-10-25 | 1 | -0/+3 |
| | | |||||
* | | Issue #25447: The lru_cache() wrapper objects now can be copied and pickled | Serhiy Storchaka | 2015-10-24 | 1 | -0/+3 |
| | | | | | | | | (by returning the original object unchanged). | ||||
* | | Merge 3.4 (Issue #25461) | Victor Stinner | 2015-10-23 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #25461: Rephrase os.walk() doc | Victor Stinner | 2015-10-23 | 1 | -0/+1 |
| | | | | | | | | Patch written by Bernt Røskar Brenna. | ||||
* | | Fix merge conflict artifacts and move the entry to correct place | Berker Peksag | 2015-10-21 | 1 | -5/+6 |
| | | |||||
* | | Issue #25390: typing: Don't crash on Union[str, Pattern]. | Guido van Rossum | 2015-10-19 | 1 | -0/+2 |
| | | |||||
* | | Issue #25441: asyncio: Raise error from drain() when socket is closed. ↵ | Guido van Rossum | 2015-10-19 | 1 | -0/+2 |
|\ \ | |/ | | | | | (Merge 3.4->3.5) | ||||
| * | Issue #25441: asyncio: Raise error from drain() when socket is closed. | Guido van Rossum | 2015-10-19 | 1 | -0/+2 |
| | | |||||
* | | - Issue #25440: Fix output of python-config --extension-suffix. | doko@ubuntu.com | 2015-10-19 | 2 | -1/+6 |
|\ \ | |/ | |||||
| * | - Issue #25440: Fix output of python-config --extension-suffix. | doko@ubuntu.com | 2015-10-19 | 2 | -1/+3 |
| | | |||||
* | | Issue #25410: Cleaned up and fixed minor bugs in C implementation of ↵ | Serhiy Storchaka | 2015-10-18 | 1 | -0/+3 |
| | | | | | | | | OrderedDict. | ||||
* | | Closes #25411: Merged fix from 3.4. | Vinay Sajip | 2015-10-17 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Closes #25411: Improved Unicode support in SMTPHandler. | Vinay Sajip | 2015-10-17 | 1 | -0/+3 |
| | | |||||
* | | Issue #25407: Drop the mention of the formatter module being removed | Brett Cannon | 2015-10-16 | 1 | -0/+3 |
| | | | | | | | | | | | | | | in Python 3.6. The new PEP 4 policy of any module existing in both 2.7 and 3.5 applies here, hence the module will be with us for a bit longer. | ||||
* | | Issue #25164: Changes default all-users install directory to match per-user ↵ | Steve Dower | 2015-10-14 | 1 | -0/+3 |
| | | | | | | | | directory. | ||||
* | | Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end() | Serhiy Storchaka | 2015-10-14 | 1 | -0/+4 |
| | | | | | | | | | | that caused segmentation fault or hang in iterating after moving several items to the start of ordered dict. | ||||
* | | Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in | Serhiy Storchaka | 2015-10-13 | 1 | -0/+3 |
|\ \ | |/ | | | | | pickletools.opcodes. | ||||
| * | Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in | Serhiy Storchaka | 2015-10-13 | 1 | -0/+3 |
| | | | | | | | | pickletools.opcodes. | ||||
| * | Correct Misc/NEWS. | Serhiy Storchaka | 2015-10-10 | 1 | -3/+3 |
| | | |||||
| * | Issue #25099: Skip relevant tests in test_compileall when an entry on | Brett Cannon | 2015-10-09 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | sys.path has an unwritable __pycache__ directory. This typically comes up when someone runs the test suite from an administrative install of Python on Windows where the user does not have write permissions to the stdlib's directory. Thanks to Zachary Ware and Matthias Klose for reporting bugs related to this issue. (grafted from 34bbd537b3e688dfbb6498e9083445a6a72fc4b1) | ||||
* | | sys.setrecursionlimit() now raises RecursionError | Victor Stinner | 2015-10-12 | 1 | -0/+5 |
| | | | | | | | | | | | | | | Issue #25274: sys.setrecursionlimit() now raises a RecursionError if the new recursion limit is too low depending at the current recursion depth. Modify also the "lower-water mark" formula to make it monotonic. This mark is used to decide when the overflowed flag of the thread state is reset. | ||||
* | | Issue #25143: Improves installer error messages for unsupported platforms. | Steve Dower | 2015-10-11 | 1 | -0/+2 |
| | | |||||
* | | Issue #25163: Display correct directory in installer when using non-default ↵ | Steve Dower | 2015-10-11 | 1 | -0/+3 |
| | | | | | | | | settings. | ||||
* | | Issue #25361: Disables use of SSE2 instructions in Windows 32-bit build | Steve Dower | 2015-10-11 | 1 | -0/+2 |
| | | |||||
* | | Issue #25364: zipfile now works in threads disabled builds. | Serhiy Storchaka | 2015-10-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #25161: Merge full stops from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 1 | -0/+1 |
| | | |||||
* | | Issue #24402: Merge input() fix from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun | Martin Panter | 2015-10-10 | 1 | -0/+3 |
| | | | | | | | | Also factored out some test cases into a new PtyTests class. | ||||
* | | Issue #25099: Skip relevant tests in test_compileall when an entry on | Brett Cannon | 2015-10-09 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | sys.path has an unwritable __pycache__ directory. This typically comes up when someone runs the test suite from an administrative install of Python on Windows where the user does not have write permissions to the stdlib's directory. Thanks to Zachary Ware and Matthias Klose for reporting bugs related to this issue. | ||||
* | | #25328: add missing raise keyword in decode_data+SMTPUTF8 check. | R David Murray | 2015-10-09 | 1 | -0/+3 |
| | | | | | | | | | | | | | | This is a relatively benign bug, since having both be true was correctly rejected at in SMTPServer even before this patch. Patch by Xiang Zhang. | ||||
* | | Issue #25089: Adds logging to installer for case where launcher is not ↵ | Steve Dower | 2015-10-08 | 1 | -0/+3 |
| | | | | | | | | selected on upgrade. | ||||
* | | Issue #23919: Prevents assert dialogs appearing in the test suite. | Steve Dower | 2015-10-08 | 1 | -0/+2 |
| | | |||||
* | | More typos in 3.5 documentation and comments | Martin Panter | 2015-10-07 | 1 | -2/+2 |
| | |