index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968)
Cheryl Sabella
2020-01-21
5
-39/+152
*
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
Andrew Svetlov
2020-01-20
1
-0/+36
*
bpo-39377: json: Remove the encoding option. (GH-18075)
Inada Naoki
2020-01-20
2
-15/+0
*
bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)
Inada Naoki
2020-01-20
2
-2/+3
*
Fix typo from base to based (GH-18055)
Michael Haas
2020-01-19
1
-1/+1
*
bpo-39356, zipfile: Remove code handling DeprecationWarning (GH-18027)
Victor Stinner
2020-01-17
1
-19/+9
*
bpo-39357: Update bz2 docstring: remove buffering (GH-18036)
Victor Stinner
2020-01-17
1
-2/+0
*
bpo-39357: Remove buffering parameter of bz2.BZ2File (GH-18028)
Victor Stinner
2020-01-16
2
-9/+4
*
bpo-39350: Remove deprecated fractions.gcd() (GH-18021)
Victor Stinner
2020-01-16
2
-48/+3
*
bpo-39351: Remove base64.encodestring() (GH-18022)
Victor Stinner
2020-01-16
2
-24/+0
*
bpo-37958: Adding get_profile_dict to pstats (GH-15495)
Daniel Olshansky
2020-01-15
2
-4/+77
*
bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)
Victor Stinner
2020-01-15
2
-3/+50
*
Improve test coverage for AsyncMock. (GH-17906)
Karthikeyan Singaravelan
2020-01-15
1
-4/+49
*
bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998)
Dong-hee Na
2020-01-14
2
-32/+51
*
bpo-38901: Allow setting a venv's prompt to the basename of the current direc...
Vinay Sajip
2020-01-14
2
-0/+11
*
venv: Suppress warning message when bash hashing is disabled. (GH-17966)
Dima
2020-01-14
1
-2/+2
*
Fix documentation in code.py (GH-17988)
Kyle Pollina
2020-01-14
1
-1/+1
*
bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...
Pablo Galindo
2020-01-14
1
-0/+18
*
bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)
Géry Ogam
2020-01-14
1
-9/+11
*
bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)
Mark Shannon
2020-01-14
5
-83/+86
*
bpo-39259: smtp.SMTP/SMTP_SSL now reject timeout = 0 (GH-17958)
Dong-hee Na
2020-01-14
2
-7/+13
*
bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959)
Dong-hee Na
2020-01-13
2
-5/+10
*
remove unused __version__ from mock.py (#17977)
Chris Withers
2020-01-13
1
-2/+0
*
bpo-39299: Add more tests for mimetypes and its cli. (GH-17949)
Karthikeyan Singaravelan
2020-01-13
2
-5/+85
*
Cleanup exit code for interpreter. (GH-17756)
Mark Shannon
2020-01-13
1
-36/+0
*
bpo-39310: Add math.ulp(x) (GH-17965)
Victor Stinner
2020-01-13
1
-28/+27
*
bpo-32021: Support brotli .br encoding in mimetypes (#12200)
Philip McMahon
2020-01-12
1
-0/+1
*
bpo-39313: Add an option to RefactoringTool for using exec as a function (GH-...
Batuhan Taşkaya
2020-01-12
3
-7/+20
*
Fix outdated comment in _strptime.py (GH-17929)
Ram Rachum
2020-01-12
1
-1/+1
*
bpo-38293: Allow shallow and deep copying of property objects (GH-16438)
Guðni Natan Gunnarsson
2020-01-12
2
-3/+4
*
bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)
Kyle Stanley
2020-01-12
1
-1/+8
*
bpo-16575: Disabled checks for union types being passed by value. (GH-17960)
Vinay Sajip
2020-01-12
1
-1/+2
*
bpo-39288: Add math.nextafter(x, y) (GH-17937)
Victor Stinner
2020-01-12
1
-0/+54
*
bpo-39259: nntplib.NNTP/NNTP_SSL now reject timeout = 0 (GH-17936)
Dong-hee Na
2020-01-11
2
-0/+6
*
bpo-39297: Update for importlib_metadata 1.4. (GH-17947)
Jason R. Coombs
2020-01-11
1
-36/+72
*
bpo-39259: nntplib.NNTP/NNTP_SSL refactoring (GH-17939)
Dong-hee Na
2020-01-11
1
-24/+18
*
Fix host in address of socket.create_server example. (GH-17706)
Karthikeyan Singaravelan
2020-01-11
1
-1/+1
*
bpo-39292: Add missing syslog facility codes. (GH-17945)
Vinay Sajip
2020-01-10
1
-21/+28
*
bpo-39200: Correct the error message for min/max builtin function (GH-17814)
Dong-hee Na
2020-01-10
1
-2/+12
*
bpo-39259: poplib now rejects timeout = 0 (GH-17912)
Dong-hee Na
2020-01-10
2
-5/+9
*
bpo-39166: Fix trace of last iteration of async for loops (#17800)
Pablo Galindo
2020-01-10
1
-0/+76
*
bpo-39235: Check end_lineno and end_col_offset of AST nodes. (GH-17926)
Serhiy Storchaka
2020-01-10
1
-102/+104
*
Fix typo in test's docstring (GH-17856)
Daniel Hahler
2020-01-09
1
-1/+1
*
bpo-25172: Reduce scope of crypt import tests (GH-17881)
Steve Dower
2020-01-09
1
-4/+5
*
Add test cases for dataclasses. (#17909)
Karthikeyan Singaravelan
2020-01-09
1
-0/+19
*
bpo-35292: Avoid calling mimetypes.init when http.server is imported (GH-17822)
An Long
2020-01-08
1
-13/+10
*
bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)
Dong-hee Na
2020-01-08
2
-3/+3
*
bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17...
Dong-hee Na
2020-01-07
2
-3/+12
*
bpo-38615: Add timeout parameter for IMAP4 and IMAP4_SSL constructor (GH-17203)
Dong-hee Na
2020-01-07
2
-15/+48
*
bpo-39198: Ensure logging global lock is released on exception in isEnabledFo...
Derek Brown
2020-01-07
1
-6/+9
[next]