Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList. | Serhiy Storchaka | 2016-07-17 | 1 | -2/+2 |
| | |||||
* | Issue #27419: Standard __import__() no longer look up "__import__" in globals | Serhiy Storchaka | 2016-07-17 | 2 | -8/+8 |
| | | | | | or builtins for importing submodules or "from import". Fixed handling an error of non-string package name. | ||||
* | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 5 | -22/+89 |
| | | | | Original patch by Alexandre Vassalotti. | ||||
* | Fixes use of Py_IntDir and Py_OutDir to control build directories. | Steve Dower | 2016-07-16 | 7 | -29/+68 |
| | |||||
* | Issue #25507: IDLE no longer runs buggy code because of its tkinter imports. | Terry Jan Reedy | 2016-07-16 | 1 | -0/+6 |
| | | | | Users must include the same imports required to run directly in Python. | ||||
* | Fix regressions introduced by fixes for issue #27083. | Brett Cannon | 2016-07-16 | 5 | -2573/+2589 |
| | |||||
* | #27522: break unintended cycle in feedparser. | R David Murray | 2016-07-16 | 2 | -3/+8 |
| | | | | Patch by Costas. | ||||
* | Issue #26696: Document collections.abc.ByteString. | Brett Cannon | 2016-07-15 | 1 | -1/+4 |
| | | | | Thanks to Xiang Zhang for the patch. | ||||
* | Fix building tcl/tk with only the VC build tools installed. | Steve Dower | 2016-07-15 | 3 | -0/+6 |
| | |||||
* | Issue #27083: Respect the PYTHONCASEOK environment variable under | Brett Cannon | 2016-07-15 | 3 | -7/+13 |
| | | | | | | | | | | Windows. Originally only b'PYTHONCASEOK' was being checked for in os.environ, but that won't work under Windows where all environment variables are strings (on OS X they are bytes). Thanks to Eryk Sun for the bug report. | ||||
* | Issue #26844: Fix imp.find_module() to have the exception related to | Brett Cannon | 2016-07-15 | 3 | -2/+6 |
| | | | | | | type issues be about 'path' instead of 'name'. Thanks to Lev Maximov for the patch. | ||||
* | Issue #27518: Fix typo in Grammar/Grammar | Berker Peksag | 2016-07-15 | 1 | -1/+1 |
| | | | | Patch by Stéphane Wirtel. | ||||
* | make too many nested blocks be a SyntaxError instead of a SystemError ↵ | Benjamin Peterson | 2016-07-15 | 3 | -3/+8 |
| | | | | | | (closes #27514) Patch by Ammar Askar. | ||||
* | Issue #27180: Clarify Path.rename() behavior on Unix systems | Berker Peksag | 2016-07-14 | 1 | -2/+3 |
| | | | | Patch by Evelyn Mitchell. | ||||
* | Issue #27455: Improve examples in tkinter documentation | Berker Peksag | 2016-07-14 | 1 | -13/+13 |
| | | | | Patch by John Hagen. | ||||
* | Issue #27369: Merge test_pyexpat from 3.4 into 3.5 | Martin Panter | 2016-07-14 | 2 | -4/+8 |
|\ | |||||
| * | Issue #27369: Merge test_pyexpat from 3.3 into 3.4 | Martin Panter | 2016-07-14 | 2 | -4/+8 |
| |\ | |||||
| | * | Issue #27369: Merge test_pyexpat from 3.2 into 3.3 | Martin Panter | 2016-07-14 | 2 | -4/+5 |
| | |\ | |||||
| | | * | Issue #27369: Don’t test error message detail that changed in Expat 2.2.03.2 | Martin Panter | 2016-07-14 | 2 | -4/+5 |
| | | | | |||||
| | | * | Issue #22758: Move NEWS entry to Library section | Martin Panter | 2016-07-14 | 1 | -3/+3 |
| | | | | |||||
* | | | | Fixes build order and lingering intermediate files. | Steve Dower | 2016-07-14 | 2 | -7/+7 |
| | | | | |||||
* | | | | Issue #27392: Add loop.connect_accepted_socket(). | Yury Selivanov | 2016-07-12 | 3 | -4/+106 |
| | | | | | | | | | | | | | | | | Patch by Jim Fulton. | ||||
* | | | | Issue #27481: Docummented that ValueError is now raised instead of TypeError | Serhiy Storchaka | 2016-07-12 | 2 | -6/+22 |
| | | | | | | | | | | | | | | | | in case of embedded null characters/bytes. Patch by Xiang Zhang. | ||||
* | | | | English spelling and grammar fixes | Martin Panter | 2016-07-11 | 11 | -17/+17 |
| | | | | |||||
* | | | | Restore NEWS entries lost in revision 8145f25f26aa | Martin Panter | 2016-07-11 | 1 | -0/+6 |
| | | | | |||||
* | | | | Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF | Martin Panter | 2016-07-11 | 3 | -8/+32 |
| | | | | |||||
* | | | | Merge heads | Serhiy Storchaka | 2016-07-10 | 2 | -4/+4 |
|\ \ \ \ | |||||
| * \ \ \ | #22758 null merge | R David Murray | 2016-07-10 | 0 | -0/+0 |
| |\ \ \ \ | | |/ / / | |||||
| | * | | | #22758 null merge | R David Murray | 2016-07-10 | 0 | -0/+0 |
| | |\ \ \ | | | |/ / | |||||
| | | * | | #22758 null merge | R David Murray | 2016-07-10 | 0 | -0/+0 |
| | | |\ \ | | | | |/ | |||||
| | | | * | #22758: fix regression in handling of secure cookies. | R David Murray | 2016-07-10 | 3 | -11/+61 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This backports the fix from #16611, per discussion with the release manager. | ||||
| * | | | | #26176: fix usage of Address constructor in email examples. | R David Murray | 2016-07-10 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | Patch by Nathan Harold. | ||||
* | | | | | Issue #27473: Fixed possible integer overflow in bytes and bytearray | Serhiy Storchaka | 2016-07-10 | 3 | -16/+14 |
|/ / / / | | | | | | | | | | | | | concatenations. Patch by Xiang Zhang. | ||||
* | | | | #20647: Update dictobject.c comments to account for randomized string hashes. | R David Murray | 2016-07-10 | 1 | -8/+5 |
| | | | | | | | | | | | | | | | | Patch by Jaysinh Shukla. | ||||
* | | | | Issue #27466: Change time format returned by http.cookie.time2netscape, | Senthil Kumaran | 2016-07-10 | 3 | -1/+27 |
| | | | | | | | | | | | | | | | | confirming the netscape cookie format. | ||||
* | | | | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 71 | -1835/+1814 |
| | | | | | | | | | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | ||||
* | | | | assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes ↵ | Benjamin Peterson | 2016-07-07 | 6 | -135/+160 |
| | | | | | | | | | | | | | | | | #24557) | ||||
* | | | | fix refleaks in PyDict_SetItem error cases (closes #27248) | Benjamin Peterson | 2016-07-07 | 1 | -3/+9 |
| | | | | |||||
* | | | | Fix a test with the new upload URL | Donald Stufft | 2016-07-06 | 1 | -1/+1 |
| | | | | |||||
* | | | | merge 3.4 | Benjamin Peterson | 2016-07-06 | 0 | -0/+0 |
|\ \ \ \ | |/ / / | |||||
| * | | | merge 3.3 | Benjamin Peterson | 2016-07-06 | 0 | -0/+0 |
| |\ \ \ | | |/ / | |||||
| | * | | Switch to the new upload url for PyPI | Donald Stufft | 2016-07-06 | 3 | -4/+4 |
| | | | | |||||
| | * | | Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. | Serhiy Storchaka | 2015-12-02 | 3 | -0/+27 |
| | | | | |||||
* | | | | merge 3.4 | Benjamin Peterson | 2016-07-06 | 3 | -5/+5 |
|\ \ \ \ | |/ / / | |||||
| * | | | Switch to the new upload url for PyPI | Donald Stufft | 2016-07-06 | 3 | -5/+5 |
| | | | | |||||
* | | | | Issue #27452: add line counter and crc to IDLE configHandler test dump. | Terry Jan Reedy | 2016-07-06 | 1 | -10/+21 |
| | | | | |||||
* | | | | Add versionadded to PyDict_SetDefault documentation | Berker Peksag | 2016-07-05 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | It was added for Python 3.4 in a0b750ea3397. | ||||
* | | | | Issue #19527: Fixed tests with defined COUNT_ALLOCS. | Serhiy Storchaka | 2016-07-03 | 10 | -6/+26 |
| | | | | |||||
* | | | | Issue #27443: __length_hint__() of bytearray itearator no longer return | Serhiy Storchaka | 2016-07-03 | 3 | -1/+18 |
| | | | | | | | | | | | | | | | | negative integer for resized bytearray. | ||||
* | | | | Issue #27431: Update default protocol version in shelve.Shelf() documentation | Berker Peksag | 2016-07-01 | 2 | -1/+5 |
| | | | | | | | | | | | | | | | | shelve.open() documentation was updated in f351fb7ea179. |