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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-32989: IDLE - fix bad editor call of pyparse method (GH-5968)
Cheryl Sabella
2020-01-21
6
-39/+154
*
improve the documentation of the LOAD_METHOD and CALL_METHOD (GH-18079)
Carl Friedrich Bolz-Tereick
2020-01-21
1
-8/+10
*
bpo-39383: Mention Darwin as a potential value for platform.system() (GH-18054)
Peter Bittner
2020-01-20
1
-3/+2
*
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
Andrew Svetlov
2020-01-20
3
-4/+49
*
Fix asyncio.get_event_loop() documentation (GH-18051)
Andrew Svetlov
2020-01-20
2
-2/+6
*
bpo-35134: Migrate frameobject.h contents to cpython/frameobject.h (GH-18052)
Nick Coghlan
2020-01-20
2
-74/+95
*
bpo-39377: json: Remove the encoding option. (GH-18075)
Inada Naoki
2020-01-20
3
-15/+2
*
bpo-38536: locale: Remove trailing space in formatted currency (GH-16864)
Inada Naoki
2020-01-20
3
-2/+5
*
bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060)
Zackery Spytz
2020-01-19
1
-0/+8
*
Fix typo from base to based (GH-18055)
Michael Haas
2020-01-19
1
-1/+1
*
bpo-39372: Clean header files of declared interfaces with no implementations ...
Pablo Galindo
2020-01-18
17
-67/+8
*
Run doctests in GitHub actions Docs targer (GH-18041)
Pablo Galindo
2020-01-17
1
-9/+9
*
Fix Lock.locked() to remove extra bold highlighting (#18042)
Grant Jenks
2020-01-17
1
-0/+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
5
-15/+26
*
bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)
Niklas Fiekas
2020-01-16
4
-54/+35
*
bpo-39350: Remove deprecated fractions.gcd() (GH-18021)
Victor Stinner
2020-01-16
5
-60/+9
*
bpo-39351: Remove base64.encodestring() (GH-18022)
Victor Stinner
2020-01-16
5
-36/+8
*
bpo-39348: Fix code highlight for the SOCK_NONBLOCK example (GH-18018)
Oz N Tiram
2020-01-15
1
-1/+3
*
bpo-37958: Adding get_profile_dict to pstats (GH-15495)
Daniel Olshansky
2020-01-15
4
-4/+90
*
Fix typo in multiprocessing.pool.AsyncResult.successful doc. (GH-17932)
Antoine
2020-01-15
1
-1/+1
*
Fix compiler warning on Windows (GH-18012)
Ammar Askar
2020-01-15
1
-1/+1
*
bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)
Victor Stinner
2020-01-15
4
-3/+57
*
bpo-1635741: Port _json extension module to multiphase initialization (PEP 48...
Hai Shi
2020-01-15
2
-23/+31
*
bpo-39164: Fix compiler warning in PyErr_GetExcInfo() (GH-18010)
Victor Stinner
2020-01-15
1
-1/+1
*
Fix AsyncMock base class in the docs (GH-18008)
Elena Oat
2020-01-15
1
-1/+1
*
Improve test coverage for AsyncMock. (GH-17906)
Karthikeyan Singaravelan
2020-01-15
1
-4/+49
*
Allow pgen to produce a DOT format dump of the grammar (GH-18005)
Pablo Galindo
2020-01-14
3
-2/+46
*
bpo-39329: Add timeout parameter for smtplib.LMTP constructor (GH-17998)
Dong-hee Na
2020-01-14
5
-33/+61
*
bpo-38901: Allow setting a venv's prompt to the basename of the current direc...
Vinay Sajip
2020-01-14
4
-1/+16
*
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
2
-2/+2
*
bpo-38361: syslog: fixed making default "ident" from sys.argv[0] (GH-16557)
Václav Bartoš
2020-01-14
2
-1/+2
*
bpo-39322: Add gc.is_finalized to the gc module docstring (GH-18000)
Pablo Galindo
2020-01-14
1
-0/+1
*
bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...
Pablo Galindo
2020-01-14
6
-1/+75
*
bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609)
Géry Ogam
2020-01-14
5
-19/+27
*
bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)
Mark Shannon
2020-01-14
17
-4847/+4901
*
bpo-39259: smtp.SMTP/SMTP_SSL now reject timeout = 0 (GH-17958)
Dong-hee Na
2020-01-14
5
-7/+29
*
bpo-39160 Align the verbs, grammar and defaults for `./configure --help` (GH-...
Anthony Shaw
2020-01-14
4
-95/+135
*
bpo-39259: ftplib.FTP/FTP_TLS now reject timeout = 0 (GH-17959)
Dong-hee Na
2020-01-13
5
-5/+27
*
remove unused __version__ from mock.py (#17977)
Chris Withers
2020-01-13
1
-2/+0
*
bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990)
Victor Stinner
2020-01-13
3
-4/+4
*
bpo-39164: Add private _PyErr_GetExcInfo() function (GH-17752)
Julien Danjou
2020-01-13
3
-4/+12
*
bpo-39299: Add more tests for mimetypes and its cli. (GH-17949)
Karthikeyan Singaravelan
2020-01-13
2
-5/+85
*
bpo-20443: Update What's New In Python 3.9 (GH-17986)
Victor Stinner
2020-01-13
1
-1/+1
*
Cleanup exit code for interpreter. (GH-17756)
Mark Shannon
2020-01-13
2
-42/+5
*
Fix typos in gcmodule.c and restructure comments for clarity (GH-17983)
Pablo Galindo
2020-01-13
1
-44/+36
*
Remove unused functions in Parser/parsetok.c (GH-17365)
Emmanuel Arias
2020-01-13
1
-18/+0
*
bpo-39310: Add math.ulp(x) (GH-17965)
Victor Stinner
2020-01-13
7
-37/+144
[next]