]> granicus.if.org Git - python/shortlog
python
2017-01-20 Ned DeilyIssue #29316: merge 3.6
2017-01-20 Ned DeilyIssue #29316: Restore the provisional status of typing...
2017-01-20 Serhiy StorchakaIssue #29327: Fixed a crash when pass the iterable...
2017-01-20 Serhiy StorchakaIssue #29327: Fixed a crash when pass the iterable...
2017-01-20 Raymond Hettingermerge
2017-01-20 Raymond HettingerIssue #29281: Fill-in a missing versionchanged entry
2017-01-20 Xiang ZhangIssue #29292: Merge 3.6.
2017-01-20 Xiang ZhangIssue #29292: Merge 3.5.
2017-01-20 Xiang ZhangIssue #29292: Update outdated doc of PyEval_EvalCodeEx.
2017-01-20 Larry HastingsNull merge from 3.6.
2017-01-20 Larry HastingsNull merge from 3.5.
2017-01-20 Larry HastingsFix incorrect patchlevel information for 3.5.3+.
2017-01-19 Serhiy StorchakaIssue #29289: Argument Clinic generates reasonable...
2017-01-19 Serhiy StorchakaIssue #29311: Argument Clinic generates reasonable...
2017-01-19 Serhiy StorchakaIssue #20186: Converted builtins enumerate() and revers...
2017-01-19 Serhiy StorchakaIssue #20186: Converted the math module to Argument...
2017-01-19 Serhiy StorchakaIssue #20186: Converted the _operator module to Argumen...
2017-01-19 INADA NaokiIssue #29296: convert print() to METH_FASTCALL
2017-01-19 Victor StinnerAdd a note explaining why dict_update() doesn't use...
2017-01-19 Victor Stinnerdict.get() and dict.setdefault() now use AC
2017-01-18 Guido van RossumIssue #29198: add AsyncGenerator (Jelle Zijlstra) ...
2017-01-18 Guido van RossumIssue #29198: add AsyncGenerator (Jelle Zijlstra)
2017-01-18 Victor Stinner_PyStack_AsDict() now checks kwnames != NULL
2017-01-18 Guido van RossumIssue #29198: add AsyncGenerator (Jelle Zijlstra) ...
2017-01-18 Victor StinnerUpdate and enhance python-gdb.py
2017-01-18 Guido van RossumIssue #28556: allow default values in class form of...
2017-01-18 Guido van RossumIssue #28556: allow default values in class form of...
2017-01-18 Guido van RossumIssue #28556: allow default values in class form of...
2017-01-18 Victor StinnerCleanup _PyMethodDef_RawFastCallDict()
2017-01-18 Victor StinnerRephrase !PyErr_Occurred() comment: may=>can
2017-01-18 Victor Stinner_PyObject_FastCallKeywords() now checks !PyErr_Occurred()
2017-01-18 Victor StinnerPyCFunction_Call() now calls _PyCFunction_FastCallDict()
2017-01-18 Victor StinnerFix _PyMethodDef_RawFastCallDict() argument parsing
2017-01-18 Victor StinnerFix Python 2.6 support in python-gdb.py
2017-01-18 Martin PanterIssue 29274: Merge doc fixes from 3.6
2017-01-18 Martin PanterIssue 29274: Merge doc fixes from 3.5
2017-01-18 Martin PanterIssue #29274: tests cases → test cases
2017-01-18 Victor Stinner_PyObject_FastCallKeywords() now checks the result
2017-01-18 Victor StinnerOptimize methoddescr_call(): avoid temporary PyCFunction
2017-01-18 Victor StinnerRemove unused func parameter of _PyStack_UnpackDict()
2017-01-18 Guido van RossumIssue #28556: merge 5 more typing changes from upstream...
2017-01-18 Guido van RossumIssue #28556: merge 5 more typing changes from upstream...
2017-01-18 Guido van RossumIssue #28556: merge 5 more typing changes from upstream...
2017-01-18 Gregory P.... Address a minor Coverity warning re: unchecked PyArg_Pa...
2017-01-17 Larry HastingsMerge from 3.5.
2017-01-17 Larry HastingsMerge from 3.4.
2017-01-17 Larry HastingsMerge 3.5.3 release head with main 3.5 branch.
2017-01-17 Larry HastingsPost-release updates for 3.5.3.
2017-01-17 Larry HastingsPost-release updates for 3.4.6.
2017-01-17 Raymond Hettingermerge
2017-01-17 Raymond HettingerIssue #29011: Fix an important omission by adding...
2017-01-17 Victor Stinner_hashopenssl uses METH_FASTCALL
2017-01-17 Victor Stinnersorted() uses METH_FASTCALL
2017-01-17 Victor Stinnernext() uses FASTCALL
2017-01-17 Victor Stinnergetattr() uses METH_FASTCALL
2017-01-17 Serhiy StorchakaNull merge
2017-01-17 Larry HastingsMerge from 3.6.
2017-01-17 Serhiy StorchakaIssue #29029: Speed up processing positional arguments in
2017-01-17 Raymond Hettingermerge
2017-01-17 Victor StinnerConvert some OrderedDict methods to Argument Clinic
2017-01-17 Victor StinnerRun Argument Clinic: METH_VARARGS=>METH_FASTCALL
2017-01-17 Victor StinnerArgument Clinic: Use METH_FASTCALL for boring positionals
2017-01-17 Victor StinnerAdd _PyArg_UnpackStack() function helper
2017-01-17 Victor StinnerRun Argument Clinic: METH_VARARGS=>METH_FASTCALL
2017-01-17 Victor StinnerArgument Clinic: Use METH_FASTCALL for positionals
2017-01-17 Victor Stinner_PyStack_UnpackDict() now returns -1 on error
2017-01-17 Victor StinnerAdd _PyArg_NoStackKeywords() helper function
2017-01-17 Victor StinnerAdd _PyArg_ParseStack() helper function
2017-01-17 Victor StinnerRename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
2017-01-16 Victor StinnerRename keywords to kwargs in getargs.c
2017-01-16 Victor Stinnertype_prepare() now uses fast call (METH_FASTCALL)
2017-01-16 Victor StinnerCleanup getargs.c
2017-01-16 Victor Stinner__build_class__() builtin uses METH_FASTCALL
2017-01-16 Victor StinnerAdd _PyStack_AsTupleSlice() helper
2017-01-16 Victor StinnerOptimize _PyCFunction_FastCallKeywords()
2017-01-16 INADA NaokiIssue #20180: forgot to update AC output.
2017-01-16 INADA NaokiIssue #20180: convert unicode methods to AC.
2017-01-16 INADA NaokiIssue #26110: Add document for LOAD_METHOD and CALL_MET...
2017-01-16 Larry HastingsAdded tag v3.4.6 for changeset b662f4776921
2017-01-16 Larry HastingsAdded tag v3.5.3 for changeset 1880cb95a742
2017-01-16 Larry HastingsVersion bump for Python 3.4.6. v3.4.6
2017-01-16 Larry HastingsVersion bump for Python 3.5.3. v3.5.3
2017-01-16 Benjamin Petersonmerge 3.6
2017-01-16 Benjamin Petersonmerge 3.5
2017-01-16 Benjamin Petersongenerate spaces instead of tabs into config.c
2017-01-15 Vinay SajipCloses #29132: Merged fix from 3.6.
2017-01-15 Vinay SajipFixed #29132: Updated shlex to work better with punctua...
2017-01-14 INADA NaokiIssue #29062: Doc: Fix make suspicious
2017-01-14 INADA NaokiIssue #29062: Doc: Fix make suspicious
2017-01-14 Martin PanterRepeat “when pass” fixes for 3.7 section
2017-01-14 Martin PanterMerge doc fixes from 3.6
2017-01-14 Martin PanterMore instances of “when pass”
2017-01-14 Martin PanterMerge doc fixes from 3.5
2017-01-14 Martin PanterAvoid line breaks after hyphens, otherwise they are...
2017-01-14 Martin PanterFix grammar, typos and markup in documentation and...
2017-01-14 Martin PanterIssue #1621: Overflow should not be possible in listext...
2017-01-14 Martin PanterIssue #29145: Merge test from 3.6
2017-01-14 Martin PanterMerge tests from 3.5
2017-01-13 Vinay SajipMerged upstream changes.
2017-01-13 Vinay SajipClosed #29261: merged fix from 3.6.
next