summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-35308: Fix regression where BROWSER env var is not respected. (GH-10693)Zhiming Wang2018-11-263-2/+22
* bpo-35134: Add Include/cpython/pyerrors.h (GH-10727)Victor Stinner2018-11-262-168/+182
* bpo-33723: Fix test_time.test_thread_time() (GH-10724)Victor Stinner2018-11-261-3/+7
* Adds IPv6 support when invoking http.server directly. (GH-10595)Lisa Roach2018-11-264-2/+30
* bpo-35134: Create Include/cpython/unicodeobject.h (GH-10680)Victor Stinner2018-11-262-1286/+1251
* Doc: Delete now useless Windows FAQ section (GH-10557)Mathieu Dupuy2018-11-261-11/+0
* bpo-35134: Create Include/cpython/object.h (GH-10679)Victor Stinner2018-11-262-485/+460
* pythoninfo: log more environment variable (GH-10719)Victor Stinner2018-11-261-4/+45
* bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623)Victor Stinner2018-11-265-252/+228
* Add assertion to _PyTuple_CAST(op) (GH-10712)Victor Stinner2018-11-261-2/+2
* bpo-34100: Merge constants recursively (GH-8341)INADA Naoki2018-11-266-4594/+4692
* bpo-35313: Cleanup test_embed.py (GH-10716)Victor Stinner2018-11-261-4/+3
* bpo-35313: Fix test_embed when run from venv (GH-10713)Victor Stinner2018-11-261-63/+68
* bpo-35300: Add usage note to the lru_cache() docs (GH-10707)Raymond Hettinger2018-11-261-0/+5
* bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)Victor Stinner2018-11-2512-5/+30
* bpo-35081: Add _PyTuple_CAST() (GH-10704)Victor Stinner2018-11-251-4/+7
* closes bpo-35309: cpath should be capath (GH-10699)BoĊĦtjan Mejak2018-11-251-1/+1
* bpo-32035: Fix words about strings and bytes in zipfile documentation. (GH-10...Serhiy Storchaka2018-11-252-16/+12
* Doc: Bump sphinx. (GH-10676)Julien Palard2018-11-242-2/+2
* bpo-35303: Fix a reference leak in _operator.c's methodcaller_repr(). (GH-10689)Zackery Spytz2018-11-231-0/+1
* bpo-29877: compileall: import ProcessPoolExecutor only when needed (GH-4856)Dustin Spicuzza2018-11-233-11/+17
* bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675)Victor Stinner2018-11-233-4/+20
* Linkify SMTP.quit() in smtplib documentation. (GH-9785)takey2018-11-231-1/+1
* bpo-35134: Create Include/cpython/ subdirectory (GH-10624)Victor Stinner2018-11-237-108/+138
* bpo-35189: Retry fnctl calls on EINTR (GH-10413)nierob2018-11-233-23/+73
* bpo-35296: make install now installs the internal API (GH-10665)Victor Stinner2018-11-232-0/+12
* Doc: Delete "how do I emulate os.kill" section in Windows FAQ (GH-10487)Mathieu Dupuy2018-11-231-20/+0
* bpo-35081: add NEWS entry for new Include/internal/pycore_*.h files (GH-10666)Victor Stinner2018-11-231-0/+2
* bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)Victor Stinner2018-11-238-12/+18
* bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672)Victor Stinner2018-11-233-4/+29
* bpo-35059: NEWS entry for macros converted to inline funcs (GH-10671)Victor Stinner2018-11-231-0/+3
* bpo-35081: Add new internal headers to Makefile (GH-10670)Victor Stinner2018-11-233-0/+10
* bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)Victor Stinner2018-11-228-2/+8
* bpo-9263: Fix _PyObject_Dump() for freed object (#10661)Victor Stinner2018-11-221-0/+5
* bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657)Victor Stinner2018-11-221-5/+1
* bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)Victor Stinner2018-11-222-10/+10
* bpo-18407: win32_urandom() uses PY_DWORD_MAX (GH-10656)Victor Stinner2018-11-221-4/+2
* bpo-9566: Fix compiler warnings in pyexpat.c (GH-10654)Victor Stinner2018-11-221-2/+4
* cjkcodecs: Fix compiler warning (GH-10651)Victor Stinner2018-11-221-2/+2
* bpo-35059: Cast void* to PyObject* (GH-10650)Victor Stinner2018-11-224-11/+17
* bpo-35059: Cleanup usage of Python macros (GH-10648)Victor Stinner2018-11-224-90/+114
* bpo-35059: Add _PyObject_CAST() macro (GH-10645)Victor Stinner2018-11-225-23/+29
* bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643)Victor Stinner2018-11-223-42/+68
* bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642)Victor Stinner2018-11-213-14/+20
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-2134-50/+93
* bpo-35189: Fix eintr_tester.py (GH-10637)Victor Stinner2018-11-211-22/+18
* bpo-35035: Rename email.utils documentation to email.utils.rst (GH-10023)Zhiming Wang2018-11-213-1/+2
* bpo-35290: Add debug info to test_c_locale_coercion (GH-10631)Victor Stinner2018-11-211-6/+15
* bpo-35221: Additional hint that the placeholder is to be replaced. (GH-10604)Julien Palard2018-11-211-1/+2
* bpo-35081: Move _PyGC_FINALIZED() back to C API (GH-10626)Victor Stinner2018-11-201-3/+3