summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-2531-242/+538
* bpo-28450: Fix and improve the documentation for unknown escapes in RE. (GH-1...Serhiy Storchaka2019-02-251-2/+5
* bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka2019-02-2518-55/+326
* Correct name of 'defaultobj' parameter in PyDict_SetDefault() signature. (GH-...Sergey Fedoseev2019-02-251-1/+1
* closes bpo-36083: Fix formatting of the manpage Synopsis. (GH-12017)Miro Hrončok2019-02-252-1/+6
* bpo-33671: allow setting shutil.copyfile() bufsize globally (GH-12016)Giampaolo Rodola2019-02-241-1/+3
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...Eric Snow2019-02-2410-121/+201
* bpo-36101: remove non-ascii characters in docstring (GH-12018)animalize2019-02-245-11/+14
* bpo-36018: Add properties for mean and stdev (GH-12022)Raymond Hettinger2019-02-243-6/+26
* bpo-35512: Resolve string target to patch.dict decorator during function call...Xtreak2019-02-244-2/+25
* bpo-27313: Avoid test_ttk_guionly ComboboxTest fail with macOS Cocoa Tk (GH-1...Ned Deily2019-02-242-1/+7
* bpo-36018: Make __pos__ return a distinct instance of NormDist (GH-12009)Raymond Hettinger2019-02-242-1/+13
* bpo-35813: Tests and docs for shared_memory (#11816)Davin Potts2019-02-249-1022/+1504
* bpo-24310: Document IDLE settings dialog font tab sample (GH-12007)Terry Jan Reedy2019-02-244-1/+17
* fix _abc.c compile error on Cygwin (GH-8445)E. M. Bray2019-02-241-1/+1
* bpo-36018: Add the NormalDist class to the statistics module (GH-11973)Raymond Hettinger2019-02-235-1/+556
* bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-1...Eric Snow2019-02-234-9/+39
* bpo-1054041: Add What's New docs. (GH-11999)Gregory P. Smith2019-02-232-0/+7
* bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731)Eric Snow2019-02-238-102/+129
* bpo-36016: Add generation option to gc.getobjects() (GH-11909)Pablo Galindo2019-02-236-14/+112
* bpo-36074: Result of `asyncio.Server.sockets` after `Server.close()` after ...Emmanuel Arias2019-02-221-2/+1
* bpo-36019: Use pythontest.net instead of example.com in network tests (GH-11941)Stéphane Wirtel2019-02-226-10/+22
* Include the --prompt flag in venv's help output (GH-10711)Holger Frey2019-02-221-1/+3
* Doc: Missing backquotes. (GH-11982)Julien Palard2019-02-221-1/+1
* bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903)Manjusaka2019-02-221-2/+4
* bpo-35904: Add statistics.fmean() (GH-11892)Raymond Hettinger2019-02-216-3/+104
* bpo-36068: Make _tuplegetter objects serializable (GH-11981)Joe Jevnik2019-02-213-3/+23
* bpo-36057 Update docs and tests for ordering in collections.Counter [no behav...Raymond Hettinger2019-02-213-7/+69
* bpo-36060: Document how collections.ChainMap() determines iteration order (GH...Raymond Hettinger2019-02-212-0/+29
* Document other performance implication for __slots__ (GH-11974)Raymond Hettinger2019-02-211-0/+1
* bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...Stéphane Wirtel2019-02-213-1/+7
* bpo-36063: Minor performance tweak in long_divmod(). (GH-11915)Sergey Fedoseev2019-02-211-2/+2
* bpo-36059: Update OrderedDict() docs to reflect that regular dicts are now or...Raymond Hettinger2019-02-211-43/+53
* Doc: fix example for iter() function. (GH-11959)Cristian Ciupitu2019-02-211-1/+1
* bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl...Zackery Spytz2019-02-212-0/+5
* bpo-36062: Minor speed-up for list slicing and copying. (GH-11967)Sergey Fedoseev2019-02-211-8/+12
* Re-init _Py_UnhandledKeyboardInterrupt before run. (GH-11963)Gregory P. Smith2019-02-211-0/+11
* bpo-31982: Improve sequence of presentation in ChainMap docs (GH-11960)Raymond Hettinger2019-02-201-1/+1
* bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907)Stefan Behnel2019-02-203-13/+45
* bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852)Stéphane Wirtel2019-02-202-2/+6
* bpo-12822: use monotonic clock for condvar if possible (GH-11723)Inada Naoki2019-02-208-51/+87
* bpo-36049: Fix compiler warning in Python/ast.c (GH-11949)Pablo Galindo2019-02-191-1/+1
* bpo-35584: Clarify role of caret in a class class (GH-11946)Raymond Hettinger2019-02-191-2/+3
* bpo-36037: Fix test_ssl for strict OpenSSL policy (GH-11940)Victor Stinner2019-02-192-1/+32
* bpo-35153: Add headers parameter to xmlrpc.client.ServerProxy (GH-10308)Cédric Krier2019-02-194-11/+86
* Doc: Fix typo. (GH-11315)Julien Palard2019-02-191-1/+1
* bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-...Sanyam Khurana2019-02-193-10/+22
* Fix a misnamed test for lists. (GH-11933)Serhiy Storchaka2019-02-191-1/+7
* Fix syntax warnings in tests introduced in bpo-35942. (GH-11934)Serhiy Storchaka2019-02-191-12/+4
* Fix syntax warnings in tests introduced in bpo-15248. (GH-11932)Serhiy Storchaka2019-02-193-6/+10