summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-35947: Update Windows to the current version of libffi (GH-11797)Paul Monson2019-03-291-29/+0
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-291-2/+13
* bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-1712)Wolfgang Maier2019-03-282-15/+5
* bpo-36366: Return None on stopping unstarted patch object (GH-12472)Xtreak2019-03-282-3/+11
* bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183)Giampaolo Rodola2019-03-281-0/+19
* bpo-36452: dictiter: track maximum iteration count (GH-12596)Thomas Perl2019-03-281-0/+9
* bpo-31292: Fixed distutils check --restructuredtext for include directives (G...Philipp A2019-03-273-2/+18
* Add missing docstrings for TarInfo objects (#12555)Raymond Hettinger2019-03-272-9/+48
* bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-271-4/+1
* bpo-36441: Fixes creating a venv when debug binaries are installed. (#12566)Steve Dower2019-03-271-0/+3
* bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428)hliu02019-03-271-2/+2
* bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553)Serhiy Storchaka2019-03-276-29/+14
* bpo-36407: Fix writing indentations of CDATA section (xml.dom.minidom). (GH-1...Vladimir Surjaninov2019-03-272-1/+18
* bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-271-0/+1
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-271-29/+0
* bpo-36429: Fix starting IDLE with pyshell (#12548)Terry Jan Reedy2019-03-262-5/+12
* bpo-36301: Test Python init with isolated (GH-12569)Victor Stinner2019-03-261-0/+20
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-8/+9
* bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)Inada Naoki2019-03-261-3/+18
* Merge tag 'v3.8.0a3'Łukasz Langa2019-03-261-10/+1
|\
| * v3.8.0a3v3.8.0a3Łukasz Langa2019-03-251-10/+1
* | bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-17/+28
* | bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-252-46/+79
* | bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using p...Pablo Galindo2019-03-252-196/+52
* | bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)Raymond Hettinger2019-03-254-3/+16
|/
* bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209)Rémi Lapeyre2019-03-251-0/+5
* Fix line ending (GH-12531)Raymond Hettinger2019-03-251-1/+1
* bpo-36401: Have help() show readonly properties separately (GH-12517)Raymond Hettinger2019-03-252-1/+7
* bpo-30348: IDLE: Add test_autocomplete unittest (GH-2209)Louie Lu2019-03-242-27/+130
* bpo-36405: IDLE - Restore __main__ and add tests (#12518)Terry Jan Reedy2019-03-244-9/+17
* bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203)Cheryl Sabella2019-03-232-45/+107
* bpo-36405: Use dict unpacking in idlelib (#12507)Terry Jan Reedy2019-03-233-12/+8
* bpo-36396: Remove fgBg param of idlelib.config.GetHighlight() (GH-12491)Terry Jan Reedy2019-03-226-58/+39
* bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be found (...Brett Cannon2019-03-222-4/+27
* bpo-30670: Add pp function to the pprint module (GH-11769)Rémi Lapeyre2019-03-222-18/+39
* asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)Inada Naoki2019-03-222-11/+11
* bpo-21269: Provide args and kwargs attributes on mock call objects GH11807Kumar Akshay2019-03-223-3/+33
* Raise the timeout in test_multiprocessing_* for slow buildbots (GH-12489)Pablo Galindo2019-03-221-1/+1
* bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477)Pablo Galindo2019-03-211-0/+4
* bpo-35978: Correctly skips venv tests in venvs (GH-12220)Steve Dower2019-03-212-12/+22
* bpo-36268: Change default tar format to pax from GNU. (GH-12355)CAM Gerlach2019-03-212-6/+7
* bpo-36324: NormalDist() add more tests and update comments (GH-12476)Raymond Hettinger2019-03-201-24/+44
* bpo-36285: Fix integer overflow in the array module. (GH-12317)sth2019-03-201-0/+141
* bpo-36312: Fix decoders for some code pages. (GH-12369)Serhiy Storchaka2019-03-201-0/+9
* bpo-36324: Improved code formatting for the NormalDist.inv_cdf rational appro...Raymond Hettinger2019-03-191-46/+48
* NormalDist.inv_cdf(): In-line constants because the variable names were not i...Raymond Hettinger2019-03-191-59/+46
* Add docstrings to the arithmetic methods in NormalDist() (GH-12426)Raymond Hettinger2019-03-191-14/+44
* bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)Raymond Hettinger2019-03-192-0/+158
* bpo-36320: Switch typing.NamedTuple from OrderedDict to regular dict (GH-12396)Raymond Hettinger2019-03-181-9/+7
* bpo-36235: Enhance distutils test_customize_compiler() (GH-12403)Victor Stinner2019-03-181-13/+79