Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | | Change SOURCE_URI for pydoc source URLs to point to 3.6 branch | Ned Deily | 2016-09-12 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | Update pydoc topics for 3.6.0b1 | Ned Deily | 2016-09-12 | 1 | -87/+226 | |
|/ / / / | ||||||
* | | | | Issue #27810: Exclude METH_FASTCALL from the stable API | Victor Stinner | 2016-09-12 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Issue #17128: Build OS X installer for 3.6 with private copy of OpenSSL. | Ned Deily | 2016-09-12 | 5 | -82/+115 | |
| | | | | | | | | | | | | | | | | | | | | Also provide a sample Install Certificates command script to install a set of root certificates from the third-party certifi module. | |||||
* | | | | Issue #27322: back out the commit. needs to be addressed after beta1. | Christian Heimes | 2016-09-12 | 1 | -1/+0 | |
| | | | | ||||||
* | | | | Issue #27322: skip test_compile_path when sys.path is not writeable. | Christian Heimes | 2016-09-12 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Issue #27350: Document compact dict memory usage | Victor Stinner | 2016-09-12 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Issue #28077: find_empty_slot() only supports combined dict | Victor Stinner | 2016-09-12 | 1 | -3/+7 | |
| | | | | ||||||
* | | | | Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict() | Victor Stinner | 2016-09-12 | 4 | -30/+53 | |
| | | | | | | | | | | | | | | | | Issue #27213. | |||||
* | | | | Revert change f860b7a775c5 | Victor Stinner | 2016-09-12 | 3 | -23/+9 | |
| | | | | | | | | | | | | | | | | | | | | Revert change "Issue #27213: Reintroduce checks in _PyStack_AsDict()", pushed by mistake. | |||||
* | | | | Buildbot: give 20 minute per test file | Victor Stinner | 2016-09-12 | 2 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems like at least 2 buildbots need more than 15 minutes per test file. Example with "AMD64 Snow Leop 3.x": 10 slowest tests: - test_tools: 14 min 40 sec - test_tokenize: 11 min 57 sec - test_datetime: 11 min 25 sec - ... | |||||
* | | | | ssue #27213: Reintroduce checks in _PyStack_AsDict() | Victor Stinner | 2016-09-12 | 3 | -9/+23 | |
| | | | | ||||||
* | | | | Issue #27866: Fix refleak in cipher_to_dict() | Victor Stinner | 2016-09-12 | 1 | -12/+1 | |
| | | | | ||||||
* | | | | socket: Fix memory leak in sendmsg() and sendmsg_afalg() | Victor Stinner | 2016-09-12 | 1 | -5/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #27744: * Release msg.msg_iov memory block. * Release memory on PyMem_Malloc(controllen) failure | |||||
* | | | | Cleanup socketmodule.c | Victor Stinner | 2016-09-12 | 1 | -13/+31 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #27744: * PEP 7: add {...} around if blocks * assign variables and then check their value in if() to make the code easier to read and to debug. | |||||
* | | | | Issue #27213: Fix reference leaks | Victor Stinner | 2016-09-12 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | merge | Christian Heimes | 2016-09-12 | 40 | -128/+579 | |
|\ \ \ \ | ||||||
| * | | | | Issue #17941: Add a *module* parameter to collections.namedtuple() | Raymond Hettinger | 2016-09-12 | 4 | -7/+22 | |
| | | | | | ||||||
| * | | | | merge | Raymond Hettinger | 2016-09-12 | 3 | -0/+22 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | Issue #17582: xml.etree.ElementTree nows preserves whitespaces in attributes | Raymond Hettinger | 2016-09-12 | 3 | -0/+22 | |
| | | | | | | | | | | | | | | | | | | | | (Patch by Duane Griffin. Reviewed and approved by Stefan Behnel.) | |||||
| * | | | | Merge 3.5 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu. | Terry Jan Reedy | 2016-09-12 | 7 | -25/+58 | |
| |\ \ \ \ | | |/ / / | | | | | | | | | | | Patch by Roger Serwy, updated by Bayard Randel. | |||||
| | * | | | Issue #15308: Add 'interrupt execution' (^C) to Shell menu. | Terry Jan Reedy | 2016-09-12 | 4 | -26/+52 | |
| | | | | | | | | | | | | | | | | | | | | Patch by Roger Serwy, updated by Bayard Randel. | |||||
| * | | | | Revert part of 3471a3515827 that caused a performance regression | Raymond Hettinger | 2016-09-12 | 1 | -8/+44 | |
| | | | | | ||||||
| * | | | | Issue #28071: Add early-out for differencing from an empty set. | Raymond Hettinger | 2016-09-12 | 2 | -0/+10 | |
| | | | | | ||||||
| * | | | | Add missing versionadded directives | Berker Peksag | 2016-09-12 | 1 | -0/+4 | |
| | | | | | ||||||
| * | | | | Issue #28045: Merge from 3.5 | Berker Peksag | 2016-09-12 | 1 | -1/+1 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | Issue #28045: Fix comment in range_contains_long() | Berker Peksag | 2016-09-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | Patch by wim glenn. | |||||
| * | | | | Issue #28095: Temporarily disable part of test_startup_imports on OS X. | Ned Deily | 2016-09-12 | 1 | -1/+3 | |
| | | | | | ||||||
| * | | | | Issue #28037: Use sqlite3_get_autocommit() instead of setting ↵ | Berker Peksag | 2016-09-12 | 4 | -27/+20 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Connection->inTransaction manually Patch adapted from https://github.com/ghaering/pysqlite/commit/9b79188edbc50faa24dc178afe24a10454f3fcad | |||||
| * | | | | Make PGO use usual build directory on Windows. | Steve Dower | 2016-09-12 | 3 | -10/+1 | |
| | | | | | ||||||
| * | | | | Adds missing assert suppression. | Steve Dower | 2016-09-12 | 1 | -0/+4 | |
| | | | | | ||||||
| * | | | | Closes #25283: Make tm_gmtoff and tm_zone available on all platforms. | Alexander Belopolsky | 2016-09-12 | 3 | -37/+89 | |
| | | | | | ||||||
| * | | | | Fixes test_getargs2 to get the buildbots working again. | Steve Dower | 2016-09-12 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Issue #28065: Update xz to 5.2.2 on Windows, and build it from source | Zachary Ware | 2016-09-12 | 5 | -7/+227 | |
| | | | | | ||||||
| * | | | | Issue #28066: Merge srcdir fix from 3.5 | Martin Panter | 2016-09-12 | 3 | -2/+5 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | Issue #28066: Fix include search directory logic for out-of-tree builds | Martin Panter | 2016-09-12 | 3 | -2/+5 | |
| | | | | | ||||||
| * | | | | Merge 3.5 (issue #27456) | Yury Selivanov | 2016-09-12 | 2 | -0/+18 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | Issue #27456: asyncio: Set TCP_NODELAY by default. | Yury Selivanov | 2016-09-12 | 2 | -0/+18 | |
| | | | | | ||||||
| * | | | | Merge 3.5 (asyncio/NEWS) | Yury Selivanov | 2016-09-12 | 1 | -0/+2 | |
| | | | | | ||||||
| * | | | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-09-12 | 7 | -0/+45 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | asyncio: Add set_protocol / get_protocol methods to Transports | Yury Selivanov | 2016-09-12 | 7 | -0/+45 | |
| | | | | | ||||||
| * | | | | merge | Raymond Hettinger | 2016-09-12 | 1 | -2/+3 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | Issue #26511: Reference the id() function in the 'is' and 'is not' docs | Raymond Hettinger | 2016-09-12 | 1 | -2/+3 | |
| | | | | | ||||||
* | | | | | Issue #28093: Check more invalid combinations of PROTOCOL_TLS_CLIENT / ↵ | Christian Heimes | 2016-09-12 | 1 | -3/+23 | |
|/ / / / | | | | | | | | | | | | | PROTOCOL_TLS_SERVER | |||||
* | | | | Update whatsnew with my contributions | Christian Heimes | 2016-09-11 | 2 | -3/+83 | |
| | | | | ||||||
* | | | | Add another f-string comment test, to make sure # are being caught in the ↵ | Eric V. Smith | 2016-09-11 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | right place. | |||||
* | | | | Make an f-string error message more exact and consistent. | Eric V. Smith | 2016-09-11 | 2 | -2/+3 | |
| | | | | ||||||
* | | | | Null merge 3.5->3.6 | Guido van Rossum | 2016-09-11 | 0 | -0/+0 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #28079: Update typing and test typing from python/typing repo. | Guido van Rossum | 2016-09-11 | 2 | -63/+407 | |
| | | | | | | | | | | | | | | | | Ivan Levkivskyi (3.5 version) | |||||
* | | | | Null merge 3.5->3.6 | Guido van Rossum | 2016-09-11 | 0 | -0/+0 | |
|\ \ \ \ | |/ / / |