summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28114: Add unit tests on os.spawn*()Victor Stinner2016-09-141-0/+86
|
* Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup()Christian Heimes2016-09-141-1/+1
|\
| * Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup()Christian Heimes2016-09-141-1/+1
| |
* | more granular configure checks for clock_* functions (closes #28081)Benjamin Peterson2016-09-144-4/+91
| |
* | merge 3.5Benjamin Peterson2016-09-140-0/+0
|\ \ | |/
| * merge headsBenjamin Peterson2016-09-143-1/+17
| |\
* | \ merge headsBenjamin Peterson2016-09-143-1/+17
|\ \ \
| * \ \ Issue #26171: Null mergeBerker Peksag2016-09-140-0/+0
| |\ \ \ | | | |/ | | |/|
| | * | Issue #26171: Null mergeBerker Peksag2016-09-140-0/+0
| | |\ \
| | | * \ Issue #26171: Null mergeBerker Peksag2016-09-140-0/+0
| | | |\ \
| | | | * | Issue #26171: Prevent buffer overflow in get_dataBerker Peksag2016-09-142-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | Backport of 01ddd608b85c.
| * | | | | Issue #28131: Merge from 3.5Berker Peksag2016-09-143-1/+17
| |\ \ \ \ \ | | |/ / / /
| | * | | | Issue #28131: Fix a regression in zipimport's compile_source()Berker Peksag2016-09-143-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | zipimport should use the same optimization level as the interpreter.
* | | | | | merge 3.5 (#28119)Benjamin Peterson2016-09-141-22/+14
|\ \ \ \ \ \ | |/ / / / / |/| | | | / | | |_|_|/ | |/| | |
| * | | | improve type-safe of and prevent double-frees in get_locale_info (#28119)Benjamin Peterson2016-09-141-17/+9
| |/ / /
* | | | Issue #28188: Use PyMem_Calloc() to get rid of a type-limits warning and an ↵Christian Heimes2016-09-131-3/+2
| | | | | | | | | | | | | | | | extra memset() call in _ssl.c.
* | | | Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly ↵Christian Heimes2016-09-1314-97/+83
| | | | | | | | | | | | | | | | optimize memcpy().
* | | | Add text about PEP 526 to What's new in 3.6. Ivan L.Guido van Rossum2016-09-131-1/+37
| | | |
* | | | Add an Android section to whatsnew/3.6.rst.Xavier de Gaye2016-09-131-0/+5
| | | |
* | | | Tidy 3.6 What's New summaryNed Deily2016-09-131-0/+2
| | | |
* | | | Fix _PyDict_Pop() on pending keyVictor Stinner2016-09-133-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #28120: Fix dict.pop() for splitted dictionary when trying to remove a "pending key" (Not yet inserted in split-table). Patch by Xiang Zhang.
* | | | Issue #28040: Cleanup find_empty_slot()Victor Stinner2016-09-131-6/+2
| | | | | | | | | | | | | | | | find_empty_slot() only supports combined dict
* | | | Issue #15819: Merge include search from 3.5 into 3.6Martin Panter2016-09-133-7/+13
|\ \ \ \ | |/ / /
| * | | Issue #15819: Remove old unconditional -IInclude optionMartin Panter2016-09-132-1/+4
| | | | | | | | | | | | | | | | | | | | A newer instance of this option, enabled in the configure script when building outside the source tree, made this redundant.
| * | | Issue #28104: More accurately document set method signaturesRaymond Hettinger2016-09-131-6/+6
| | | |
* | | | Explain why PROTOCOL_SSLv23 does not support SSLv2 and SSLv3 by default.Christian Heimes2016-09-131-1/+1
| | | |
* | | | Explain why PROTOCOL_SSLv23 does not support SSLv2 and SSLv3 by default.Christian Heimes2016-09-131-10/+14
| | | |
* | | | Fix NULL check in sock_sendmsg_iovec. CID 1372885Christian Heimes2016-09-131-1/+1
| | | |
* | | | merge headsBenjamin Peterson2016-09-130-0/+0
|\ \ \ \
| * \ \ \ Issue #27952: Merge from 3.5Berker Peksag2016-09-131-1/+2
| |\ \ \ \
| * \ \ \ \ Issue #27981: Merge from 3.5Berker Peksag2016-09-131-2/+5
| |\ \ \ \ \
* | \ \ \ \ \ merge 3.5Benjamin Peterson2016-09-131-1/+2
|\ \ \ \ \ \ \ | | |_|_|/ / / | |/| | | | |
| * | | | | | merge headsBenjamin Peterson2016-09-131-1/+2
| |\ \ \ \ \ \ | | | |_|/ / / | | |/| | | |
| | * | | | | Issue #27952: Capture stderr in run_script()Berker Peksag2016-09-131-1/+2
| | | |/ / / | | |/| | |
| | * | | | Issue #27981: Fix refleak in fp_setreadl()Berker Peksag2016-09-131-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | Patch by David Dudson.
* | | | | | merge 3.5 (#27981)Benjamin Peterson2016-09-131-15/+17
|\ \ \ \ \ \ | |/ / / / / | | | / / / | |_|/ / / |/| | | |
| * | | | restructure fp_setreadl so as to avoid refleaks (closes #27981)Benjamin Peterson2016-09-131-15/+17
| |/ / /
* | | | Fix headers in whatsnew/3.6.rstBerker Peksag2016-09-131-14/+14
| | | |
* | | | Issue #28103: Merge from 3.5Berker Peksag2016-09-131-2/+2
|\ \ \ \ | |/ / /
| * | | Issue #28103: Use ``'...'`` style in zipfile documentationBerker Peksag2016-09-131-2/+2
| | | | | | | | | | | | | | | | Patch by Stephen J. Turnbull.
* | | | Start 3.6 branchNed Deily2016-09-121-0/+1
| | | |
* | | | Post 3.6.0b1 mergeNed Deily2016-09-124-32/+21
|\ \ \ \
| * | | | Updates zip and nuget builds for Windows.Steve Dower2016-09-122-21/+20
| | | | |
| * | | | Fix warning in _PyCFunction_FastCallKeywords()Victor Stinner2016-09-121-2/+1
| | | | | | | | | | | | | | | | | | | | Issue #28105.
| * | | | Issue #23545: Adding -Wextra in setup.py is no longer necessary, since itStefan Krah2016-09-121-9/+0
| | | | | | | | | | | | | | | | | | | | is now part of the official flags.
* | | | | Start 3.6.0b2Ned Deily2016-09-122-1/+13
| | | | |
* | | | | Added tag v3.6.0b1 for changeset 5b0ca4ed5e2fNed Deily2016-09-121-0/+1
| | | | |
* | | | | Version bump for 3.6.0b1v3.6.0b1Ned Deily2016-09-123-6/+6
| | | | |
* | | | | 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
|/ / / /