summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* get_gmtoff() now returns time_t (GH-10838)Victor Stinner2018-11-301-11/+36
* bpo-35352: Cleanup test_asyncio/utils.py (GH-10831)Victor Stinner2018-11-301-7/+1
* bpo-35352: test_asyncio uses the certificate set from the test directory (GH-...stratakis2018-11-306-185/+4
* bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008)Siddhesh Poyarekar2018-11-302-4/+39
* Fix compiler warning in call_readline() (GH-10820)Victor Stinner2018-11-301-3/+3
* Fix signature of xml.dom.minidom.Document.toprettyxml(). (GH-10814)E Kawashima2018-11-301-1/+1
* bpo-35347: Cleanup test_socket.NonBlockingTCPTests (GH-10818)Victor Stinner2018-11-301-89/+74
* bpo-35347: Fix test_socket.NonBlockingTCPTests (GH-10791)Victor Stinner2018-11-301-25/+39
* bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806)Victor Stinner2018-11-303-4/+36
* Fix typo in Memory Management doc. (GH-10798)Kevin Adler2018-11-301-1/+1
* bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)Zackery Spytz2018-11-301-0/+1
* bpo-34279, regrtest: Issue a warning if no tests have been executed (GH-10150)Pablo Galindo2018-11-295-7/+107
* Use assertEqual to fix DeprecationWarning. (GH-10794)Xtreak2018-11-291-1/+1
* bpo-30167: Remove __cached__ from __main__ when removing __file__ (GH-7415)INADA Naoki2018-11-292-2/+10
* bpo-16086: Fix PyType_GetFlags() documentation (GH-10758)Eddie Elizondo2018-11-291-1/+4
* bpo-35345: Remove platform.popen() (GH-10781)Victor Stinner2018-11-295-58/+12
* bpo-28167: Remove platform._dist_try_harder() (GH-10787)Victor Stinner2018-11-291-48/+0
* bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782)Victor Stinner2018-11-291-2/+0
* bpo-33723: Remove busy loop from test_time (GH-10773)Victor Stinner2018-11-281-47/+0
* bpo-34100: compile: Re-enable frozenset merging (GH-10760)INADA Naoki2018-11-282-2/+65
* bpo-35337: Fix gettmarg(): use PyStructSequence_GET_ITEM() (GH-10765)Victor Stinner2018-11-281-2/+2
* bpo-35134: Create Include/cpython/tupleobject.h (GH-10764)Victor Stinner2018-11-285-33/+81
* bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759)Victor Stinner2018-11-283-9/+19
* bpo-35240: Add "doctest" job to Travis CI (GH-10753)Victor Stinner2018-11-281-4/+16
* bpo-33676: Fix dangling thread in _test_multiprocessing (GH-10755)Victor Stinner2018-11-281-0/+2
* bpo-35134: Don't define types twice in header files (GH-10754)Victor Stinner2018-11-272-29/+36
* bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751)Serhiy Storchaka2018-11-272-3/+3
* bpo-35312: Make lib2to3.pgen2.parse.ParseError round-trip pickle-able. (GH-10...Anthony Sottile2018-11-273-0/+16
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-2725-122/+128
* bpo-34100: Partially revert merge_consts_recursive() (GH-10743)Victor Stinner2018-11-272-60/+0
* bpo-35134: Update "make tags": add Include/cpython/ (GH-10739)Victor Stinner2018-11-271-2/+2
* bpo-33954: Fix compiler warning in _PyUnicode_FastFill() (GH-10737)Victor Stinner2018-11-271-1/+4
* bpo-35317: Fix mktime() error in test_email (GH-10721)Victor Stinner2018-11-272-0/+5
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-2738-174/+174
* bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)Serhiy Storchaka2018-11-275-15/+15
* bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...Serhiy Storchaka2018-11-2777-643/+974
* bpo-31241: Fix AST node position for list and generator comprehensions. (GH-1...Serhiy Storchaka2018-11-275-230/+278
* Include the highest pickle protocol in a couple of tests. (GH-10735)Zackery Spytz2018-11-272-2/+2
* closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (G...E. M. Bray2018-11-272-1/+2
* bpo-35134: Create Include/cpython/pystate.h (GH-10733)Victor Stinner2018-11-262-281/+275
* bpo-35134: Create Include/cpython/dictobject.h (GH-10732)Victor Stinner2018-11-262-119/+124
* bpo-35134: Create Include/cpython/pylifecycle.h (GH-10731)Victor Stinner2018-11-262-97/+102
* bpo-35134: Create Include/cpython/abstract.h (GH-10728)Victor Stinner2018-11-262-281/+285
* 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