summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Change SOURCE_URI for pydoc source URLs to point to 3.6 branchNed Deily2016-09-121-1/+1
| | | | |
* | | | | Update pydoc topics for 3.6.0b1Ned Deily2016-09-121-87/+226
|/ / / /
* | | | Issue #27810: Exclude METH_FASTCALL from the stable APIVictor Stinner2016-09-121-1/+1
| | | |
* | | | Issue #17128: Build OS X installer for 3.6 with private copy of OpenSSL.Ned Deily2016-09-125-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 Heimes2016-09-121-1/+0
| | | |
* | | | Issue #27322: skip test_compile_path when sys.path is not writeable.Christian Heimes2016-09-121-0/+1
| | | |
* | | | Issue #27350: Document compact dict memory usageVictor Stinner2016-09-121-0/+2
| | | |
* | | | Issue #28077: find_empty_slot() only supports combined dictVictor Stinner2016-09-121-3/+7
| | | |
* | | | Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()Victor Stinner2016-09-124-30/+53
| | | | | | | | | | | | | | | | Issue #27213.
* | | | Revert change f860b7a775c5Victor Stinner2016-09-123-23/+9
| | | | | | | | | | | | | | | | | | | | Revert change "Issue #27213: Reintroduce checks in _PyStack_AsDict()", pushed by mistake.
* | | | Buildbot: give 20 minute per test fileVictor Stinner2016-09-122-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 Stinner2016-09-123-9/+23
| | | |
* | | | Issue #27866: Fix refleak in cipher_to_dict()Victor Stinner2016-09-121-12/+1
| | | |
* | | | socket: Fix memory leak in sendmsg() and sendmsg_afalg()Victor Stinner2016-09-121-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #27744: * Release msg.msg_iov memory block. * Release memory on PyMem_Malloc(controllen) failure
* | | | Cleanup socketmodule.cVictor Stinner2016-09-121-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 leaksVictor Stinner2016-09-121-0/+2
| | | |
* | | | mergeChristian Heimes2016-09-1240-128/+579
|\ \ \ \
| * | | | Issue #17941: Add a *module* parameter to collections.namedtuple()Raymond Hettinger2016-09-124-7/+22
| | | | |
| * | | | mergeRaymond Hettinger2016-09-123-0/+22
| |\ \ \ \ | | |/ / /
| | * | | Issue #17582: xml.etree.ElementTree nows preserves whitespaces in attributesRaymond Hettinger2016-09-123-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 Reedy2016-09-127-25/+58
| |\ \ \ \ | | |/ / / | | | | | | | | | | Patch by Roger Serwy, updated by Bayard Randel.
| | * | | Issue #15308: Add 'interrupt execution' (^C) to Shell menu.Terry Jan Reedy2016-09-124-26/+52
| | | | | | | | | | | | | | | | | | | | Patch by Roger Serwy, updated by Bayard Randel.
| * | | | Revert part of 3471a3515827 that caused a performance regressionRaymond Hettinger2016-09-121-8/+44
| | | | |
| * | | | Issue #28071: Add early-out for differencing from an empty set.Raymond Hettinger2016-09-122-0/+10
| | | | |
| * | | | Add missing versionadded directivesBerker Peksag2016-09-121-0/+4
| | | | |
| * | | | Issue #28045: Merge from 3.5Berker Peksag2016-09-121-1/+1
| |\ \ \ \ | | |/ / /
| | * | | Issue #28045: Fix comment in range_contains_long()Berker Peksag2016-09-121-1/+1
| | | | | | | | | | | | | | | | | | | | Patch by wim glenn.
| * | | | Issue #28095: Temporarily disable part of test_startup_imports on OS X.Ned Deily2016-09-121-1/+3
| | | | |
| * | | | Issue #28037: Use sqlite3_get_autocommit() instead of setting ↵Berker Peksag2016-09-124-27/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Connection->inTransaction manually Patch adapted from https://github.com/ghaering/pysqlite/commit/9b79188edbc50faa24dc178afe24a10454f3fcad
| * | | | Make PGO use usual build directory on Windows.Steve Dower2016-09-123-10/+1
| | | | |
| * | | | Adds missing assert suppression.Steve Dower2016-09-121-0/+4
| | | | |
| * | | | Closes #25283: Make tm_gmtoff and tm_zone available on all platforms.Alexander Belopolsky2016-09-123-37/+89
| | | | |
| * | | | Fixes test_getargs2 to get the buildbots working again.Steve Dower2016-09-121-1/+1
| | | | |
| * | | | Issue #28065: Update xz to 5.2.2 on Windows, and build it from sourceZachary Ware2016-09-125-7/+227
| | | | |
| * | | | Issue #28066: Merge srcdir fix from 3.5Martin Panter2016-09-123-2/+5
| |\ \ \ \ | | |/ / /
| | * | | Issue #28066: Fix include search directory logic for out-of-tree buildsMartin Panter2016-09-123-2/+5
| | | | |
| * | | | Merge 3.5 (issue #27456)Yury Selivanov2016-09-122-0/+18
| |\ \ \ \ | | |/ / /
| | * | | Issue #27456: asyncio: Set TCP_NODELAY by default.Yury Selivanov2016-09-122-0/+18
| | | | |
| * | | | Merge 3.5 (asyncio/NEWS)Yury Selivanov2016-09-121-0/+2
| | | | |
| * | | | Merge 3.5 (asyncio)Yury Selivanov2016-09-127-0/+45
| |\ \ \ \ | | |/ / /
| | * | | asyncio: Add set_protocol / get_protocol methods to TransportsYury Selivanov2016-09-127-0/+45
| | | | |
| * | | | mergeRaymond Hettinger2016-09-121-2/+3
| |\ \ \ \ | | |/ / /
| | * | | Issue #26511: Reference the id() function in the 'is' and 'is not' docsRaymond Hettinger2016-09-121-2/+3
| | | | |
* | | | | Issue #28093: Check more invalid combinations of PROTOCOL_TLS_CLIENT / ↵Christian Heimes2016-09-121-3/+23
|/ / / / | | | | | | | | | | | | PROTOCOL_TLS_SERVER
* | | | Update whatsnew with my contributionsChristian Heimes2016-09-112-3/+83
| | | |
* | | | Add another f-string comment test, to make sure # are being caught in the ↵Eric V. Smith2016-09-111-0/+2
| | | | | | | | | | | | | | | | right place.
* | | | Make an f-string error message more exact and consistent.Eric V. Smith2016-09-112-2/+3
| | | |
* | | | Null merge 3.5->3.6Guido van Rossum2016-09-110-0/+0
|\ \ \ \ | |/ / /
| * | | Issue #28079: Update typing and test typing from python/typing repo.Guido van Rossum2016-09-112-63/+407
| | | | | | | | | | | | | | | | Ivan Levkivskyi (3.5 version)
* | | | Null merge 3.5->3.6Guido van Rossum2016-09-110-0/+0
|\ \ \ \ | |/ / /