summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* remove unused __version__ from mock.pycjw296-patch-1Chris Withers2020-01-131-2/+0
* bpo-32021: Support brotli .br encoding in mimetypes (#12200)Philip McMahon2020-01-122-0/+2
* bpo-39313: Add an option to RefactoringTool for using exec as a function (GH-...Batuhan Taşkaya2020-01-125-8/+23
* Fix outdated comment in _strptime.py (GH-17929)Ram Rachum2020-01-121-1/+1
* bpo-3530: Add advice on when to correctly use fix_missing_locations in the AS...Batuhan Taşkaya2020-01-122-1/+11
* bpo-38293: Allow shallow and deep copying of property objects (GH-16438)Guðni Natan Gunnarsson2020-01-123-3/+5
* bpo-39288: Add examples to math.nextafter() documentation (GH-17962)Victor Stinner2020-01-121-0/+7
* bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)Kyle Stanley2020-01-121-1/+8
* bpo-12159: Document sys.maxsize limit in len() function reference (GH-17934)Zac Hatfield-Dodds2020-01-121-0/+5
* bpo-16575: Disabled checks for union types being passed by value. (GH-17960)Vinay Sajip2020-01-122-1/+20
* bpo-39288: Add math.nextafter(x, y) (GH-17937)Victor Stinner2020-01-126-1/+140
* bpo-39259: nntplib.NNTP/NNTP_SSL now reject timeout = 0 (GH-17936)Dong-hee Na2020-01-115-0/+24
* bpo-39297: Update for importlib_metadata 1.4. (GH-17947)Jason R. Coombs2020-01-112-36/+73
* bpo-39259: nntplib.NNTP/NNTP_SSL refactoring (GH-17939)Dong-hee Na2020-01-111-24/+18
* Fix host in address of socket.create_server example. (GH-17706)Karthikeyan Singaravelan2020-01-111-1/+1
* bpo-39292: Add missing syslog facility codes. (GH-17945)Vinay Sajip2020-01-101-21/+28
* bpo-39200: Correct the error message for min/max builtin function (GH-17814)Dong-hee Na2020-01-103-4/+21
* bpo-39259: poplib now rejects timeout = 0 (GH-17912)Dong-hee Na2020-01-105-6/+26
* bpo-39166: Fix trace of last iteration of async for loops (#17800)Pablo Galindo2020-01-103-5/+87
* bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926)Serhiy Storchaka2020-01-101-102/+104
* bpo-39235: Fix end location for genexp in call args (GH-17925)Guido van Rossum2020-01-092-8/+10
* Fix typo in test's docstring (GH-17856)Daniel Hahler2020-01-091-1/+1
* bpo-25172: Reduce scope of crypt import tests (GH-17881)Steve Dower2020-01-091-4/+5
* Add test cases for dataclasses. (#17909)Karthikeyan Singaravelan2020-01-091-0/+19
* bpo-39161: Document multi-phase init modules under Py_NewInterpreter() (GH-17...Petr Viktorin2020-01-091-17/+35
* bpo-39270: Remove dead assignment from config_init_module_search_paths (GH-17...Alex Henrie2020-01-091-2/+1
* bpo-39272: Remove dead assignment from _ssl__SSLContext_load_verify_locations...Alex Henrie2020-01-091-1/+0
* bpo-39271: Remove dead assignment from pattern_subx (GH-17915)Alex Henrie2020-01-091-1/+0
* closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind...Alex Henrie2020-01-081-2/+4
* closes bpo-39261: Remove dead assignment from pyinit_config. (GH-17907)Alex Henrie2020-01-081-1/+0
* Py_DECREF: only pass filename if Py_REF_DEBUG is defined (GH-17870)Victor Stinner2020-01-081-5/+10
* bpo-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822)An Long2020-01-083-16/+17
* bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)Dong-hee Na2020-01-084-7/+10
* bpo-39233: Update positional-only section in the glossary (GH-17874)Pablo Galindo2020-01-081-3/+5
* bpo-39237, datetime: Remove redundant call to round from delta_new (GH-17877)Alex Henrie2020-01-081-1/+0
* bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17...Dong-hee Na2020-01-073-3/+14
* bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203)Dong-hee Na2020-01-075-25/+90
* bpo-39198: Ensure logging global lock is released on exception in isEnabledFo...Derek Brown2020-01-072-6/+10
* bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)Victor Stinner2020-01-075-6/+13
* bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)Andrew Svetlov2020-01-072-5/+9
* bpo-38623: Doc: Add section for site module CLI. (GH-17858)Inada Naoki2020-01-071-2/+7
* Doc: Change Python 2 status to EOL. (GH-17885)Inada Naoki2020-01-071-1/+1
* bpo-39234: `enum.auto()` default initial value as 1 (GH-17878)YoSTEALTH2020-01-061-1/+1
* bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873)Steve Dower2020-01-061-1/+1
* bpo-39234: Doc: `enum.auto()` incrementation value not specified. (GH-17872)YoSTEALTH2020-01-061-1/+1
* bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818)Anthony Wee2020-01-061-1/+1
* bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)Pablo Galindo2020-01-063-0/+40
* Fix link to bpo issue in Changelog (GH-17692)Chandan Singh2020-01-061-1/+1
* bpo-38907: Suppress any exception when attempting to set V6ONLY. (GH-17864)Jason R. Coombs2020-01-061-1/+5
* argument-clinic: Simplify multi-line string handling (GH-17852)Dong-hee Na2020-01-061-2/+2