aboutsummaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959)Dong-hee Na2020-01-132-5/+10
* remove unused __version__ from mock.py (#17977)Chris Withers2020-01-131-2/+0
* bpo-39299: Add more tests for mimetypes and its cli. (GH-17949)Karthikeyan Singaravelan2020-01-132-5/+85
* Cleanup exit code for interpreter. (GH-17756)Mark Shannon2020-01-131-36/+0
* bpo-39310: Add math.ulp(x) (GH-17965)Victor Stinner2020-01-131-28/+27
* bpo-32021: Support brotli .br encoding in mimetypes (#12200)Philip McMahon2020-01-121-0/+1
* bpo-39313: Add an option to RefactoringTool for using exec as a function (GH-...Batuhan Taşkaya2020-01-123-7/+20
* Fix outdated comment in _strptime.py (GH-17929)Ram Rachum2020-01-121-1/+1
* bpo-38293: Allow shallow and deep copying of property objects (GH-16438)Guðni Natan Gunnarsson2020-01-122-3/+4
* bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)Kyle Stanley2020-01-121-1/+8
* bpo-16575: Disabled checks for union types being passed by value. (GH-17960)Vinay Sajip2020-01-121-1/+2
* bpo-39288: Add math.nextafter(x, y) (GH-17937)Victor Stinner2020-01-121-0/+54
* bpo-39259: nntplib.NNTP/NNTP_SSL now reject timeout = 0 (GH-17936)Dong-hee Na2020-01-112-0/+6
* bpo-39297: Update for importlib_metadata 1.4. (GH-17947)Jason R. Coombs2020-01-111-36/+72
* 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-101-2/+12
* bpo-39259: poplib now rejects timeout = 0 (GH-17912)Dong-hee Na2020-01-102-5/+9
* bpo-39166: Fix trace of last iteration of async for loops (#17800)Pablo Galindo2020-01-101-0/+76
* bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926)Serhiy Storchaka2020-01-101-102/+104
* 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-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822)An Long2020-01-081-13/+10
* bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)Dong-hee Na2020-01-082-3/+3
* bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17...Dong-hee Na2020-01-072-3/+12
* bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203)Dong-hee Na2020-01-072-15/+48
* bpo-39198: Ensure logging global lock is released on exception in isEnabledFo...Derek Brown2020-01-071-6/+9
* bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)Victor Stinner2020-01-071-1/+4
* bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)Andrew Svetlov2020-01-072-5/+9
* bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)Pablo Galindo2020-01-061-0/+36
* bpo-38907: Suppress any exception when attempting to set V6ONLY. (GH-17864)Jason R. Coombs2020-01-061-1/+5
* bpo-38907: In http.server script, restore binding to IPv4 on Windows. (GH-17851)Jason R. Coombs2020-01-051-1/+13
* Minor formatting improvements and fixes to idle.rst (GH-17165)Tal Einat2020-01-051-7/+8
* Organise and clean test_positional_only_arg and add more tests (GH-17842)Pablo Galindo2020-01-051-14/+23
* bpo-39200: Correct the error message for range() empty constructor (GH-17813)Pablo Galindo2020-01-051-0/+13
* Fix constant folding optimization for positional only arguments (GH-17837)Anthony Sottile2020-01-051-0/+12
* bpo-39152: add missing ttk.Scale.configure return value (GH-17815)Terry Jan Reedy2020-01-052-11/+7
* bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH...Serhiy Storchaka2020-01-052-1/+2
* bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)Serhiy Storchaka2020-01-052-17/+36
* bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)Serhiy Storchaka2020-01-053-13/+37
* Fix SystemError when nested function has annotation on positional-only argume...Anthony Sottile2020-01-051-0/+7
* Fix #39191: Don't spawn a task before failing (#17796)Andrew Svetlov2020-01-041-3/+7
* bpo-39158: ast.literal_eval() doesn't support empty sets (GH-17742)Raymond Hettinger2020-01-022-0/+4
* bpo-38870: Throw ValueError on invalid yield from usage (GH-17798)Batuhan Taşkaya2020-01-022-4/+6
* bpo-39114: Fix tracing of except handlers with name binding (GH-17769)Pablo Galindo2020-01-021-0/+45
* bpo-13601: always use line-buffering for sys.stderr (GH-17646)Jendrik Seipp2020-01-011-0/+16
* bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-17773)Vinay Sajip2020-01-012-1/+32
* bpo-39176: Improve error message for 'named assignment' (GH-17777)Ned Batchelder2019-12-312-3/+3