Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #27064: The py.exe launcher now defaults to Python 3. | Paul Moore | 2016-05-22 | 2 | -7/+24 |
| | | | | | The Windows launcher ``py.exe`` no longer prefers an installed Python 2 version over Python 3 by default when used interactively. | ||||
* | Issue #27075: Link to StreamReader and StreamWriter docs | Berker Peksag | 2016-05-21 | 1 | -4/+4 |
|\ | | | | | | | Patch by Ville Skyttä. | ||||
| * | Issue #27075: Link to StreamReader and StreamWriter docs | Berker Peksag | 2016-05-21 | 1 | -4/+4 |
| | | | | | | | | Patch by Ville Skyttä. | ||||
* | | subprocess now emits a ResourceWarning warning | Victor Stinner | 2016-05-20 | 2 | -0/+14 |
| | | | | | | | | | | Issue #26741: subprocess.Popen destructor now emits a ResourceWarning warning if the child process is still running. | ||||
* | | Optimize pickle.load() and pickle.loads() | Victor Stinner | 2016-05-20 | 1 | -0/+3 |
| | | | | | | | | | | Issue #27056: Optimize pickle.load() and pickle.loads(), up to 10% faster to deserialize a lot of small objects. | ||||
* | | Back out pathlib.Path.path attr. (Merge 3.5->3.6) | Guido van Rossum | 2016-05-19 | 1 | -22/+0 |
|\ \ | |/ | |||||
| * | Back out pathlib.Path.path attr. (Merge 3.4->3.5) | Guido van Rossum | 2016-05-19 | 1 | -22/+0 |
| |\ | |||||
| | * | Back out 7e9605697dfc, 2e3c31ab586a, 759b2cecc289. | Guido van Rossum | 2016-05-19 | 1 | -18/+0 |
| | | | | | | | | | | | | | | | | | | | | | These added a path attribute to pathlib.Path objects, and docs. Instead, we're going to use PEP 519. (Starting in the 3.4 branch and merging forward from there since that's what I did originally.) | ||||
* | | | Issue #27036: Fixed formatting references to "bytes-like object" in plural. | Serhiy Storchaka | 2016-05-18 | 6 | -6/+6 |
|\ \ \ | |/ / | |||||
| * | | Issue #27036: Fixed formatting references to "bytes-like object" in plural. | Serhiy Storchaka | 2016-05-18 | 6 | -6/+6 |
| | | | |||||
* | | | Issue #23275: Allow () = iterable assignment syntax | Berker Peksag | 2016-05-18 | 1 | -16/+15 |
| | | | | | | | | | | | | Documentation updates by Martin Panter. | ||||
* | | | merge from 3.5 | Senthil Kumaran | 2016-05-18 | 1 | -2/+2 |
|\ \ \ | |/ / | | | | | | | issue27045 - Use backslash in windows path to script file. | ||||
| * | | issue27045 - Use backslash in windows path to script file. | Senthil Kumaran | 2016-05-18 | 1 | -2/+2 |
| | | | |||||
* | | | Issue #27049: fix doc typo | Ned Deily | 2016-05-18 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Issue #27049: fix doc typo | Ned Deily | 2016-05-18 | 1 | -1/+1 |
| | | | |||||
* | | | merge 3.5 (#27042) | Benjamin Peterson | 2016-05-17 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | class definitions only get argument lists (closes #27042) | Benjamin Peterson | 2016-05-17 | 1 | -1/+1 |
| | | | |||||
| * | | Backed out changeset 71ff2235bb4c (closes #27042) | Benjamin Peterson | 2016-05-17 | 1 | -1/+1 |
| | | | |||||
* | | | docs: Update whatsnew/3.6 with asyncio changes | Yury Selivanov | 2016-05-16 | 1 | -0/+53 |
| | | | |||||
* | | | Merge 3.5 | Yury Selivanov | 2016-05-16 | 4 | -0/+86 |
|\ \ \ | |/ / | |||||
| * | | docs: Update asyncio docs & whatsnew | Yury Selivanov | 2016-05-16 | 4 | -0/+86 |
| | | | |||||
* | | | Issue #27031: Removed dummy methods in Tkinter widget classes: tk_menuBar() | Serhiy Storchaka | 2016-05-16 | 1 | -0/+4 |
| | | | | | | | | | | | | and tk_bindForTraversal(). | ||||
* | | | Issue #27033: The default value of the decode_data parameter for | Serhiy Storchaka | 2016-05-16 | 1 | -23/+27 |
| | | | | | | | | | | | | smtpd.SMTPChannel and smtpd.SMTPServer constructors is changed to False. | ||||
* | | | Expand abbreviations FIFO and LIFO. | Serhiy Storchaka | 2016-05-16 | 6 | -14/+21 |
| | | | |||||
* | | | Issue #27034: Removed deprecated class asynchat.fifo. | Serhiy Storchaka | 2016-05-16 | 1 | -8/+8 |
| | | | |||||
* | | | Issue #26039: Document ZipInfo.is_dir() and make force_zip64 keyword-only. | Serhiy Storchaka | 2016-05-15 | 1 | -2/+10 |
| | | | | | | | | | | | | Patch by Thomas Kluyver. | ||||
* | | | Issue #26870: Add readline.set_auto_history(), originally by Tyler Crompton | Martin Panter | 2016-05-15 | 2 | -0/+22 |
| | | | |||||
* | | | Issue #25533: Merge frozen module docs from 3.5 | Martin Panter | 2016-05-15 | 3 | -8/+9 |
|\ \ \ | |/ / | |||||
| * | | Issue #25533: Update documentation regarding the frozen modules table | Martin Panter | 2016-05-15 | 3 | -8/+9 |
| | | | | | | | | | | | | | | | * "ctypes" documentation was using Python 2 bytes-str equivalence. * PyImport_FrozenModules is a pointer to const as of Python 3.4 | ||||
* | | | Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIP | Serhiy Storchaka | 2016-05-13 | 2 | -16/+30 |
| | | | | | | | | | | | | file, as well as for extracting data. Patch by Thomas Kluyver. | ||||
* | | | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 63 | -413/+449 |
|\ \ \ | |/ / | | | | | | | Original patch by James Edwards. | ||||
| * | | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 63 | -413/+449 |
| | | | | | | | | | | | | Original patch by James Edwards. | ||||
* | | | merge 3.5 (#26986) | Benjamin Peterson | 2016-05-10 | 1 | -2/+3 |
|\ \ \ | |/ / | |||||
| * | | improve PyFunction_New docs (closes #26986) | Benjamin Peterson | 2016-05-10 | 1 | -2/+3 |
| | | | | | | | | | | | | Patch from Xiang Zhang. | ||||
* | | | Issue #26156: Make expressions grammar description more semantically correct. | Serhiy Storchaka | 2016-05-08 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | Issue #26156: Make expressions grammar description more semantically correct. | Serhiy Storchaka | 2016-05-08 | 1 | -2/+2 |
| | | | |||||
* | | | Merge typo fixes from 3.5 | Martin Panter | 2016-05-08 | 3 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | Corrections for a/an in code comments and documentation | Martin Panter | 2016-05-08 | 1 | -1/+1 |
| | | | |||||
| * | | Fix typos in comments, documentation and test method names | Martin Panter | 2016-05-08 | 2 | -2/+2 |
| | | | |||||
* | | | Issue #26512: Merge rounding doc from 3.5 | Martin Panter | 2016-05-08 | 1 | -13/+16 |
|\ \ \ | |/ / | |||||
| * | | Issue #26512: Clarify Integral; tidy up table of rounding functions | Martin Panter | 2016-05-08 | 1 | -13/+16 |
| | | | | | | | | | | | | Based on patch by Julien. | ||||
* | | | Issue #26736: Used HTTPS for external links in the documentation if possible. | Serhiy Storchaka | 2016-05-07 | 65 | -138/+138 |
|\ \ \ | |/ / | |||||
| * | | Issue #26736: Used HTTPS for external links in the documentation if possible. | Serhiy Storchaka | 2016-05-07 | 65 | -138/+138 |
| | | | |||||
* | | | Issue #26889: Fixed hyperlinks formatting. | Serhiy Storchaka | 2016-05-07 | 1 | -4/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #26889: Fixed hyperlinks formatting. | Serhiy Storchaka | 2016-05-07 | 1 | -4/+4 |
| | | | |||||
* | | | Issue #26889: Tweaked xmlrpc.client documentation. | Serhiy Storchaka | 2016-05-07 | 1 | -89/+102 |
|\ \ \ | |/ / | |||||
| * | | Issue #26889: Tweaked xmlrpc.client documentation. | Serhiy Storchaka | 2016-05-07 | 1 | -89/+102 |
| | | | |||||
* | | | Issue #26957: Remove duplicate 'the' from datetime documentation | Berker Peksag | 2016-05-04 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | Patch by Alex Chan. | ||||
| * | | Issue #26957: Remove duplicate 'the' from datetime documentation | Berker Peksag | 2016-05-04 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch by Alex Chan. | ||||
* | | | Merge with 3.5 | Terry Jan Reedy | 2016-05-02 | 1 | -8/+10 |
|\ \ \ | |/ / |