summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* merge 3.6doko2017-01-31716-158992/+14541
|\
| * merge 3.6doko2017-01-31716-158992/+14541
| |\
| | * Issue #29283: Merge from 3.6Berker Peksag2017-01-301-2/+0
| | |\
| | * | Issue #28822: Add susp-ignored entry for NEWS; fix grammarMartin Panter2017-01-292-1/+2
| | | |
| | * | Issues #11670: Merge configparser doc from 3.6Martin Panter2017-01-291-6/+6
| | |\ \
| | * \ \ Issues #29349: Merge Py 2.6+ compatibility from 3.6Martin Panter2017-01-291-0/+2
| | |\ \ \
| | * | | | Issue #29384: Remove Be OS scripts from Modules/, unused in 3.0+Martin Panter2017-01-293-151/+2
| | | | | |
| | * | | | Issues #29349: Add NEWS for 3.7; use ?with? statementMartin Panter2017-01-292-4/+3
| | | | | |
| | * | | | Issues #29349: Merge Py 2 fix 3.6Martin Panter2017-01-29713-158838/+14536
| | |\ \ \ \
| | | * \ \ \ Issues #12067: Merge hash recommendation from 3.6Martin Panter2017-01-291-0/+4
| | | |\ \ \ \
| | | * \ \ \ \ mergeRaymond Hettinger2017-01-281-4/+18
| | | |\ \ \ \ \
| | | * | | | | | Issue #29383: reduce temporary interned unicodeINADA Naoki2017-01-281-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add_methods(), add_members(), and add_getset() used PyDict_SetItemString() to register descriptor to the type's dict. So descr_new() and PyDict_SetItemString() creates interned unicode from same C string. This patch takes interned unicode from descriptor, and use PyDict_SetItem() instead of PyDict_SetItemString(). python_startup_no_site: default: Median +- std dev: 12.7 ms +- 0.1 ms patched: Median +- std dev: 12.5 ms +- 0.1 ms
| | | * | | | | | Closes #28784: Merged update from 3.6.Vinay Sajip2017-01-27713-158834/+14525
| | | |\ \ \ \ \ \
| | | | * \ \ \ \ \ Closes #29308: Merged fix from 3.6.Vinay Sajip2017-01-27713-158834/+14525
| | | | |\ \ \ \ \ \
| | | | | * \ \ \ \ \ merge 3.6Benjamin Peterson2017-01-251-7/+0
| | | | | |\ \ \ \ \ \
| | | | | * | | | | | | Issue #29358: Add postcondition checks on typesVictor Stinner2017-01-251-3/+24
| | | | | | | | | | | |
| | | | | * | | | | | | Issue #29369: Use Py_IDENTIFIER in Python-ast.cINADA Naoki2017-01-252-14/+25
| | | | | | | | | | | |
| | | | | * | | | | | | Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced withSerhiy Storchaka2017-01-25712-158817/+14476
| | | | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a macro if Py_LIMITED_API is not set or set to the value between 0x03050400 and 0x03060000 (not including) or 0x03060100 or higher. Added functions PySlice_Unpack() and PySlice_AdjustIndices().
| | | | | | * \ \ \ \ \ \ [merge 3.6] - issue26149 - Point to Wiki for Editors and Python IDEs on Unix.Senthil Kumaran2017-01-251-12/+7
| | | | | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch contributed by Mariatta Wijaya.
| | | | | | * | | | | | | | Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDictSerhiy Storchaka2017-01-255-44/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | methods.
| | | | | | * | | | | | | | issue29167: fix race condition in (Int)FlagEthan Furman2017-01-242-6/+99
| | | | | | |\ \ \ \ \ \ \ \
| | | | | | * \ \ \ \ \ \ \ \ Issue #29083: Fixed the declaration of some public API functions.Serhiy Storchaka2017-01-24709-158795/+14408
| | | | | | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PyArg_VaParse() and PyArg_VaParseTupleAndKeywords() were not available in limited API. PyArg_ValidateKeywordArguments(), PyArg_UnpackTuple() and Py_BuildValue() were not available in limited API of version < 3.3 when PY_SSIZE_T_CLEAN is defined.
| | | | | | | * \ \ \ \ \ \ \ \ Issue #29337: Fixed possible BytesWarning when compare the code objects.Serhiy Storchaka2017-01-24709-158795/+14408
| | | | | | | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Warnings could be emitted at compile time.
| | | | | | | | * | | | | | | | | Issue #29360: _PyStack_AsDict() doesn't check kwnamesVictor Stinner2017-01-242-8/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove two assertions which can fail on legit code. Keyword arguments are checked later with better tests and raise a regular (TypeError) exception.
| | | | | | | | * | | | | | | | | Issue #29338: Fix test_enum.Serhiy Storchaka2017-01-241-0/+4
| | | | | | | | | | | | | | | | |
| | | | | | | | * | | | | | | | | Fix grammar in doc string, RST markupMartin Panter2017-01-243-5/+5
| | | | | | | | | | | | | | | | |
| | | | | | | | * | | | | | | | | Issues #29189: Merge indentation fixes from 3.6Martin Panter2017-01-24708-158793/+14400
| | | | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | | | * \ \ \ \ \ \ \ \ Issues #29273: Merge test___all__ from 3.6Martin Panter2017-01-231-11/+0
| | | | | | | | | |\ \ \ \ \ \ \ \ \
| | | | | | | | | * | | | | | | | | | Issue #29338: Don't output an empty signature for class constructor.Serhiy Storchaka2017-01-231-2/+2
| | | | | | | | | | | | | | | | | | |
| | | | | | | | | * | | | | | | | | | Merge 3.6Victor Stinner2017-01-23708-158793/+14400
| | | | | | | | | |\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | * | | | | | | | | | Issue #29338: The help of a builtin or extension class now includes theSerhiy Storchaka2017-01-232-3/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | constructor signature if __text_signature__ is provided for the class.
| | | | | | | | | | * | | | | | | | | | Issue #26729: Fixed __text_signature__ for sorted().Serhiy Storchaka2017-01-23707-158790/+14368
| | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Erik Welch.
| | | | | | | | | | | * | | | | | | | | | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-235-19/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | possible but Coccinelle couldn't find opportunity.
| | | | | | | | | | | * | | | | | | | | | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-2357-445/+225
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | possible. Patch is writen with Coccinelle.
| | | | | | | | | | | * | | | | | | | | | Skip the test requiring ctypes if ctypes is unavailable.Gregory P. Smith2017-01-221-1/+6
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prevents http://buildbot.python.org/all/builders/x86%20Ubuntu%20Shared%203.x/builds/240/steps/test/logs/stdio
| | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ typo fix, extra '.' on MacOS :)Gregory P. Smith2017-01-221-1/+1
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Issue #28556: Allow defining methods in NamedTuple class syntax (#362) ↵Guido van Rossum2017-01-22680-158326/+14133
| | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (3.6->3.7)
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ Issue #28556: various style fixes for typing.py (3.6->3.7)Guido van Rossum2017-01-222-36/+68
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-22680-158326/+14133
| | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | exited to a stopped instead of terminated state (ex: when under ptrace).
| | | | | | | | | | | | | * | | | | | | | | | | | | Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()Serhiy Storchaka2017-01-229-13/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is now of type "const char *" rather of "char *".
| | | | | | | | | | | | | * | | | | | | | | | | | | Issue #29290: Merge 3.6.Xiang Zhang2017-01-223-1/+21
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #29092: Merge 3.6.Xiang Zhang2017-01-223-5/+7
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.Serhiy Storchaka2017-01-213-5/+22
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * | | | | | | | | | | | | | | | Issue #29331: Simplified argument parsing in sorted() and list.sort().Serhiy Storchaka2017-01-212-24/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | | | | | | | | | | | | Issue #29282: Backed out changeset b33012ef1417Mark Dickinson2017-01-216-338/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | | | | | | | | | | | | Issue #29282: add fused multiply-add function, math.fma.Mark Dickinson2017-01-216-1/+338
| | | | | | | | | | | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | | | | | | | | | | | | Update Misc/NEWS and Misc/HISTORY from current 3.5 and 3.4 branches.Ned Deily2017-01-202-49/+3669
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #29316: merge 3.6Ned Deily2017-01-202-6/+10
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().Serhiy Storchaka2017-01-203-1/+15
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | * \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ mergeRaymond Hettinger2017-01-191-0/+5
| | | | | | | | | | | | | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \