summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-36440: include node names in ParserError messages, instead of numeric IDs...tyomitch2019-04-033-6/+29
* Have UserDict.__init__() implicitly check for updating w/ bool(kwargs) instea...Slam2019-04-021-1/+1
* bpo-32413: Add documentation that at the module level, locals(), globals() ar...Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2019-04-021-1/+2
* bpo-33261: guard access to __code__ attribute in inspect (GH-6448)Jeroen Demeyer2019-04-024-9/+29
* bpo-36504: Fix signed integer overflow in _ctypes.c's PyCArrayType_new(). (GH...Zackery Spytz2019-04-023-1/+8
* bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12...Thomas Perl2019-04-023-2/+36
* bpo-35838: document optionxform must be idempotent (GH-12656)Inada Naoki2019-04-021-0/+6
* fix confusing argument name in unicodeobject.c (GH-12653)Max Bernstein2019-04-021-2/+2
* bpo-36377: Specify that range() can not be compared (GH-12468)Emmanuel Arias2019-04-021-12/+11
* bpo-13120: fix typo with test_issue13120() method name (GH-12250)Daniel Hahler2019-04-011-3/+3
* Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649)Steve Dower2019-04-011-0/+4
* bpo-36157:Document PyInterpreterState_Main() (GH-12238)Joannah Nanjekye2019-04-012-0/+6
* bpo-36495: Fix two out-of-bounds array reads (GH-12641)Brad Larsen2019-04-011-2/+2
* bpo-20844: open script file with "rb" mode (GH-12616)Inada Naoki2019-04-014-1/+24
* bpo-36026: make descr error message consistent (GH-11930)Inada Naoki2019-04-012-16/+41
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-0122-21/+457
* bpo-36150: Fix possible assertion failures due to _ctypes.c's PyCData_reduce(...Zackery Spytz2019-03-311-4/+5
* bpo-35947: Fix a compiler warning in _ctypes.c's StructUnionType_paramfunc()....Zackery Spytz2019-03-311-1/+1
* bpo-36085: Add installer check for KB2533625 (GH-12636)Steve Dower2019-03-314-11/+34
* bpo-36085: Add additional load flag to ensure DLL loads successfully (GH-12633)Steve Dower2019-03-311-1/+2
* bpo-36010: Add venv to the nuget distribution (GH-12367)Paul Moore2019-03-303-2/+11
* bpo-36384: Remove check for leading zeroes in IPv4 addresses (GH-12577)Joel Croteau2019-03-303-15/+4
* C API docs: Py_IsInitialized is always safe to call (GH-12630)Nick Coghlan2019-03-301-0/+1
* bpo-22831: Use "with" to avoid possible fd leaks in tools (part 2). (GH-10927)Serhiy Storchaka2019-03-3027-258/+248
* bpo-22831: Use "with" to avoid possible fd leaks in tools (part 1). (GH-10926)Serhiy Storchaka2019-03-305-228/+226
* bpo-36434: Properly handle writing errors in ZIP files. (GH-12559)Serhiy Storchaka2019-03-303-41/+82
* bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603)Serhiy Storchaka2019-03-303-0/+14
* bpo-17110: doc: add note how to get bytes from sys.argv (GH-12602)Inada Naoki2019-03-301-0/+6
* github: assign @methane to dict owner (GH-12617)Inada Naoki2019-03-301-0/+1
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-2912-22/+492
* bpo-35947: Update Windows to the current version of libffi (GH-11797)Paul Monson2019-03-2924-2365/+250
* bpo-36448: mention 'make regen-all' in error message (GH-12585)Jeroen Demeyer2019-03-291-2/+2
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-295-114/+152
* bpo-35194: cjkcodec: check the encoded value is not truncated (GH-10432)Alexey Izbyshev2019-03-291-18/+20
* bpo-36064: Clarify allowed data types for urllib.request.Request. (GH-11990)Julien Palard2019-03-291-2/+2
* bpo-33043: Add a Contributing to Docs link and Update the Found a Bug Page (#...Susan Su2019-03-293-1/+11
* bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-1712)Wolfgang Maier2019-03-283-15/+7
* bpo-36366: Return None on stopping unstarted patch object (GH-12472)Xtreak2019-03-283-3/+15
* Fixed capital letters missing and missing . (GH-12584)Jules Lasne (jlasne)2019-03-281-6/+6
* Fix typo in email.encoders doc (GH-9700)ksamuel2019-03-281-1/+1
* bpo-35941: Fix ssl certificate enumeration for windows (GH-12486)kctherookie2019-03-282-20/+92
* bpo-36425: Add Simplified Chinese to the language switcher (GH-12537)zhsj2019-03-282-0/+3
* bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183)Giampaolo Rodola2019-03-283-1/+92
* bpo-36387: Refactor getenvironment() in _winapi.c. (GH-12482)Serhiy Storchaka2019-03-281-46/+34
* bpo-36459: Fix a possible double PyMem_FREE() due to tokenizer.c's tok_nextc(...Zackery Spytz2019-03-282-1/+1
* bpo-36452: dictiter: track maximum iteration count (GH-12596)Thomas Perl2019-03-283-0/+16
* Fix NEWS entries with incorrect bpo numbers (GH-12599)Ned Deily2019-03-282-2/+2
* Revert "Minor doc improvement (GH-10341)" (GH-12597)Raymond Hettinger2019-03-282-3/+3
* bpo-36245: Fix more empty environment variable checks (GH-12592)Steve Dower2019-03-271-2/+2
* bpo-31292: Fixed distutils check --restructuredtext for include directives (G...Philipp A2019-03-274-2/+20