summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]()) ↵Guido van Rossum2016-10-292-9/+45
|\ \ \ | |/ / | | | | | | (3.5->3.6)
| * | Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]())Guido van Rossum2016-10-292-9/+45
| | |
* | | Issue #28556: updates to typing.py (fix copy, deepcopy, pickle) (3.5->3.6)Guido van Rossum2016-10-292-0/+27
|\ \ \ | |/ /
| * | Issue #28556: updates to typing.py (fix copy, deepcopy, pickle)Guido van Rossum2016-10-292-0/+27
| | |
* | | Adds missing _asyncio.pyd to installer and generally tidies pyd management.Steve Dower2016-10-293-69/+23
| | |
* | | Issue #28556: updates to typing.py (3.5->3.6)Guido van Rossum2016-10-292-355/+540
|\ \ \ | |/ /
| * | Issue #28556: updates to typing.pyGuido van Rossum2016-10-292-355/+540
| | |
* | | Makes test_underpth* tests more robust by copying the executable.Steve Dower2016-10-292-25/+51
| | |
* | | Issue #28444: Merge with 3.5.Xavier de Gaye2016-10-294-23/+28
|\ \ \ | |/ /
| * | Issue #28444: Fix missing extensions modules when cross compiling.Xavier de Gaye2016-10-294-23/+28
| | |
* | | Issue #28199: Microoptimized dict resizing. Based on patch by Naoki Inada.Serhiy Storchaka2016-10-291-60/+63
| | |
* | | Issue #28544: Fix inefficient call to _PyObject_CallMethodId()Victor Stinner2016-10-291-1/+1
| | | | | | | | | | | | | | | "()" format string creates an empty list of argument but requires extra work to parse the format string.
* | | Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*`Yury Selivanov2016-10-283-8/+12
| | |
* | | Issue #28544: Fix compilation of _asynciomodule.c on WindowsYury Selivanov2016-10-282-2/+2
| | |
* | | Removes incorrect condition from lib_pdb.msiSteve Dower2016-10-281-1/+0
|\ \ \ | |/ /
| * | Removes incorrect condition from lib_pdb.msiSteve Dower2016-10-281-1/+0
| | |
* | | Issue #28544: Fix _asynciomodule.c on WindowsVictor Stinner2016-10-281-5/+5
| | | | | | | | | | | | | | | | | | PyType_Ready() sets the reference to &PyType_Type. &PyType_Type cannot be resolved at compilation time (not on Windows?).
* | | Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-2810-549/+2709
| | | | | | | | | | | | | | | | | | | | | | | | This implementation provides additional 10-20% speed boost for asyncio programs. The patch also fixes _asynciomodule.c to use Arguments Clinic, and makes '_schedule_callbacks' an overridable method (as it was in 3.5).
* | | Merge heads.Xavier de Gaye2016-10-281-1/+1
|\ \ \
| * \ \ Fixed possible NULL decrefing.Serhiy Storchaka2016-10-281-1/+1
| |\ \ \ | | |/ /
| | * | Fixed possible NULL decrefing.Serhiy Storchaka2016-10-281-1/+1
| | | |
* | | | Issue #28046: Fix the removal of the sysconfigdata moduleXavier de Gaye2016-10-281-3/+1
|/ / / | | | | | | | | | from lib-dynload on install.
* | | Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable.Serhiy Storchaka2016-10-281-10/+15
|\ \ \ | |/ /
| * | Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable.Serhiy Storchaka2016-10-281-10/+15
| | |
* | | Issue #28522: Fixes mishandled buffer reallocation in getpathp.cSteve Dower2016-10-273-4/+72
| | |
* | | Issue #22949: Documented that fnmatch.translate() is for use with re.match().Serhiy Storchaka2016-10-271-1/+2
|\ \ \ | |/ /
| * | Issue #22949: Documented that fnmatch.translate() is for use with re.match().Serhiy Storchaka2016-10-271-1/+2
| | |
* | | Issue #22493: Updated an example for fnmatch.translate().Serhiy Storchaka2016-10-271-1/+1
| | |
* | | Revert incorrect file merge from 3.5.Steve Dower2016-10-271-1/+1
| | |
* | | Merge from 3.5Steve Dower2016-10-272-8/+25
|\ \ \ | |/ /
| * | Updates release build to collect symbols and binaries, and create nuget package.Steve Dower2016-10-273-9/+25
| | |
* | | Issue #28496: Mark up constants 0, 1 and -1 that denote return values orSerhiy Storchaka2016-10-2712-64/+64
|\ \ \ | |/ / | | | | | | special input values as literal text.
| * | Issue #28496: Mark up constants 0, 1 and -1 that denote return values orSerhiy Storchaka2016-10-2712-64/+64
| | | | | | | | | | | | special input values as literal text.
* | | Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(),Serhiy Storchaka2016-10-274-9/+57
| | | | | | | | | | | | | | | PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode().
* | | Issue #28526: Use PyUnicode_AsEncodedString() instead ofSerhiy Storchaka2016-10-271-2/+2
|\ \ \ | |/ / | | | | | | | | | PyUnicode_AsEncodedObject() in _curese to ensure that the result is a bytes object.
| * | Issue #28526: Use PyUnicode_AsEncodedString() instead ofSerhiy Storchaka2016-10-271-2/+2
| | | | | | | | | | | | | | | PyUnicode_AsEncodedObject() in _curese to ensure that the result is a bytes object.
* | | Issue #28509: dict.update() no longer allocate unnecessary large memoryINADA Naoki2016-10-272-2/+6
| | |
* | | Ignore harmless suspicious markupZachary Ware2016-10-261-0/+1
| | |
* | | Merge from 3.5Zachary Ware2016-10-261-1/+1
|\ \ \ | |/ /
| * | Fix default role usageZachary Ware2016-10-261-1/+1
| | |
* | | Issue #25002: Back out asyncore/asynchat deprecation.Guido van Rossum2016-10-262-9/+0
| | |
* | | Issue #26240: Merge subprocess doc string from 3.5 into 3.6Martin Panter2016-10-252-340/+82
|\ \ \ | |/ /
| * | Issue #26240: Clean up the subprocess module doc stringMartin Panter2016-10-252-348/+80
| | | | | | | | | | | | Patch by Tim Mitchell.
* | | Issue #28333: Fixes off-by-one error that was adding an extra space.Steve Dower2016-10-251-1/+2
| | |
* | | Null mergeSerhiy Storchaka2016-10-250-0/+0
|\ \ \ | |/ /
| * | Issue #28353: Fixed tests of os.fwalk() with broken links.Serhiy Storchaka2016-10-251-3/+18
| | |
* | | Issue #28107: Update typing module documentation for NamedTuple (Ivan)Guido van Rossum2016-10-251-4/+13
| | |
* | | Issue #28353: Try to fix tests.Serhiy Storchaka2016-10-251-2/+13
| | |
* | | Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.Guido van Rossum2016-10-254-0/+15
| | |
* | | Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-253-22/+69
|\ \ \ | |/ / | | | | | | subclasses of accelerated OrderedDict.