summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-39406: os.putenv() avoids putenv_dict on Windows (GH-18126)Victor Stinner2020-01-221-2/+6
* Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)Victor Stinner2020-01-226-94/+12
* bpo-39353: Deprecate the binhex module (GH-18025)Victor Stinner2020-01-229-25/+120
* bpo-39425: Fix list.count performance regression (GH-18119)Dong-hee Na2020-01-221-0/+4
* bpo-39377: json: Update doc about the encoding option. (GH-18076)Inada Naoki2020-01-222-8/+11
* closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...Dong-hee Na2020-01-223-68/+0
* PyLong_AsLongLong() docs should say 'long long' (#18082)Keith Erskine2020-01-211-1/+1
* bpo-39406: Add PY_PUTENV_DICT macro to posixmodule.c (GH-18106)Victor Stinner2020-01-211-15/+37
* bpo-39413: Implement os.unsetenv() on Windows (GH-18104)Victor Stinner2020-01-216-12/+92
* Move test_math tests (GH-18098)Victor Stinner2020-01-211-148/+148
* bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)Victor Stinner2020-01-211-1/+1
* bpo-39389: gzip: fix compression level metadata (GH-18077)William Chargin2020-01-213-3/+31
* bpo-39396: Fix math.nextafter(-0.0, +0.0) on AIX 7.1 (GH-18094)Victor Stinner2020-01-213-79/+86
* bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968)Cheryl Sabella2020-01-216-39/+154
* improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)Carl Friedrich Bolz-Tereick2020-01-211-8/+10
* bpo-39383: Mention Darwin as a potential value for platform.system() (GH-18054)Peter Bittner2020-01-201-3/+2
* bpo-39386: Prevent double awaiting of async iterator (GH-18081)Andrew Svetlov2020-01-203-4/+49
* Fix asyncio.get_event_loop() documentation (GH-18051)Andrew Svetlov2020-01-202-2/+6
* bpo-35134: Migrate frameobject.h contents to cpython/frameobject.h (GH-18052)Nick Coghlan2020-01-202-74/+95
* bpo-39377: json: Remove the encoding option. (GH-18075)Inada Naoki2020-01-203-15/+2
* bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)Inada Naoki2020-01-203-2/+5
* bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060)Zackery Spytz2020-01-191-0/+8
* Fix typo from base to based (GH-18055)Michael Haas2020-01-191-1/+1
* bpo-39372: Clean header files of declared interfaces with no implementations ...Pablo Galindo2020-01-1817-67/+8
* Run doctests in GitHub actions Docs targer (GH-18041)Pablo Galindo2020-01-171-9/+9
* Fix Lock.locked() to remove extra bold highlighting (#18042)Grant Jenks2020-01-171-0/+1
* bpo-39356, zipfile: Remove code handling DeprecationWarning (GH-18027)Victor Stinner2020-01-171-19/+9
* bpo-39357: Update bz2 docstring: remove buffering (GH-18036)Victor Stinner2020-01-171-2/+0
* bpo-39357: Remove buffering parameter of bz2.BZ2File (GH-18028)Victor Stinner2020-01-165-15/+26
* bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)Niklas Fiekas2020-01-164-54/+35
* bpo-39350: Remove deprecated fractions.gcd() (GH-18021)Victor Stinner2020-01-165-60/+9
* bpo-39351: Remove base64.encodestring() (GH-18022)Victor Stinner2020-01-165-36/+8
* bpo-39348: Fix code highlight for the SOCK_NONBLOCK example (GH-18018)Oz N Tiram2020-01-151-1/+3
* bpo-37958: Adding get_profile_dict to pstats (GH-15495)Daniel Olshansky2020-01-154-4/+90
* Fix typo in multiprocessing.pool.AsyncResult.successful doc. (GH-17932)Antoine2020-01-151-1/+1
* Fix compiler warning on Windows (GH-18012)Ammar Askar2020-01-151-1/+1
* bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)Victor Stinner2020-01-154-3/+57
* bpo-1635741: Port _json extension module to multiphase initialization (PEP 48...Hai Shi2020-01-152-23/+31
* bpo-39164: Fix compiler warning in PyErr_GetExcInfo() (GH-18010)Victor Stinner2020-01-151-1/+1
* Fix AsyncMock base class in the docs (GH-18008)Elena Oat2020-01-151-1/+1
* Improve test coverage for AsyncMock. (GH-17906)Karthikeyan Singaravelan2020-01-151-4/+49
* Allow pgen to produce a DOT format dump of the grammar (GH-18005)Pablo Galindo2020-01-143-2/+46
* bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998)Dong-hee Na2020-01-145-33/+61
* bpo-38901: Allow setting a venv's prompt to the basename of the current direc...Vinay Sajip2020-01-144-1/+16
* venv: Suppress warning message when bash hashing is disabled. (GH-17966)Dima2020-01-141-2/+2
* Fix documentation in code.py (GH-17988)Kyle Pollina2020-01-142-2/+2
* bpo-38361: syslog: fixed making default "ident" from sys.argv[0] (GH-16557)Václav Bartoš2020-01-142-1/+2
* bpo-39322: Add gc.is_finalized to the gc module docstring (GH-18000)Pablo Galindo2020-01-141-0/+1
* bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...Pablo Galindo2020-01-146-1/+75
* bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)Géry Ogam2020-01-145-19/+27