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-38870: Don't start generated output with newlines in ast.unparse (GH-19636)
Batuhan Taskaya
2020-05-03
2
-11/+15
*
bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)
Chris Jerdonek
2020-05-03
1
-0/+20
*
Minor code cleanups for statistics (GH-19873)
Raymond Hettinger
2020-05-03
1
-76/+7
*
bpo-40465: Deprecate the optional argument to random.shuffle(). (#19867)
Raymond Hettinger
2020-05-02
2
-1/+6
*
bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers ...
Sander
2020-05-02
1
-1/+2
*
bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)
Serhiy Storchaka
2020-05-02
1
-2/+2
*
Fix some scripts in the peg generator folder (GH-19853)
Pablo Galindo
2020-05-02
2
-63/+5
*
bpo-29587: Update gen.throw() to chain exceptions (#19823)
Chris Jerdonek
2020-05-02
1
-0/+17
*
Simplify choice()'s interaction with the private _randbelow() method (GH-19831)
Raymond Hettinger
2020-05-01
2
-12/+8
*
bpo-40334: unskip test_function_type in test_unparse with the new parser (GH-...
Pablo Galindo
2020-05-01
1
-1/+0
*
bpo-40334: Improve column offsets for thrown syntax errors by Pegen (GH-19782)
Batuhan Taskaya
2020-05-01
2
-24/+24
*
bpo-40462: fix variable and function names (GH-19832)
Furkan Önder
2020-05-01
3
-4/+2
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
2
-1/+5
*
Change 'exception happened' to 'exception occurred' in two places (#19767)
Noah Doersing
2020-05-01
1
-1/+1
*
bpo-40334: Add support for feature_version in new PEG parser (GH-19827)
Lysandros Nikolaou
2020-05-01
1
-6/+0
*
bpo-40443: Remove unused imports in stdlib (GH-19815)
Victor Stinner
2020-05-01
3
-4/+2
*
bpo-40275: Fix name error in support.socket_helper (GH-19825)
Victor Stinner
2020-05-01
1
-4/+6
*
Remove dead code in test__xxsubinterpreters (GH-19826)
Victor Stinner
2020-05-01
1
-20/+0
*
Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19...
Victor Stinner
2020-04-30
1
-17/+0
*
bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)
Chris Jerdonek
2020-04-30
1
-0/+17
*
bpo-40334: Support type comments (GH-19780)
Guido van Rossum
2020-04-30
1
-1/+6
*
compileall: Fix typos in docstring (GH-19810)
Jelle Zijlstra
2020-04-30
1
-2/+2
*
bpo-40443: Remove unused imports in distutils (GH-19802)
Victor Stinner
2020-04-30
11
-17/+6
*
bpo-40443: Remove unused imports in the stdlib (GH-19803)
Victor Stinner
2020-04-30
10
-12/+0
*
bpo-40394 - difflib.SequenceMatched.find_longest_match default args (GH-19742)
lrjball
2020-04-30
2
-3/+55
*
bpo-40443: Remove unused imports in idlelib (GH-19801)
Victor Stinner
2020-04-30
6
-6/+3
*
bpo-40389: Improve repr of typing.Optional (#19714)
Vlad Serebrennikov
2020-04-30
3
-2/+9
*
bpo-40443: Remove unused imports in tests (GH-19804)
Victor Stinner
2020-04-30
18
-20/+2
*
bpo-40443: Remove unused imports in tests (GH-19805)
Victor Stinner
2020-04-29
17
-20/+4
*
bpo-40334: Fix test_peg_parser to actually use the old parser (GH-19778)
Lysandros Nikolaou
2020-04-29
1
-5/+4
*
bpo-40291: Add support for CAN_J1939 sockets (GH-19538)
karl ding
2020-04-29
1
-0/+74
*
bpo-40286: Remove C implementation of Random.randbytes() (GH-19797)
Victor Stinner
2020-04-29
1
-0/+6
*
bpo-9216: Expose OpenSSL FIPS_mode() as _hashlib.get_fips_mode() (GH-19703)
Victor Stinner
2020-04-29
2
-0/+25
*
bpo-40228: More robust frame.setlineno. (GH-19437)
Mark Shannon
2020-04-29
1
-18/+17
*
bpo-40436: Fix code parsing gdb version (GH-19792)
Victor Stinner
2020-04-29
2
-2/+11
*
Add missing sys import to socket_helper.py (GH-19791)
Pablo Galindo
2020-04-29
1
-0/+1
*
bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711)
Serhiy Storchaka
2020-04-29
14
-137/+145
*
bpo-40334: Disallow invalid single statements in the new parser (GH-19774)
Lysandros Nikolaou
2020-04-29
1
-1/+0
*
bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760)
Victor Stinner
2020-04-29
1
-14/+27
*
bpo-40275: Move requires_hashdigest() to test.support.hashlib_helper (GH-19716)
Hai Shi
2020-04-29
9
-68/+71
*
bpo-40334: Fix shifting of nested f-strings in the new parser (GH-19771)
Lysandros Nikolaou
2020-04-29
1
-2/+1
*
bpo-38880: List interpreters associated with a channel end (GH-17323)
Lewis Gaul
2020-04-29
1
-0/+196
*
bpo-40431: Fix syntax typo in turtledemo (GH-19777)
Miro Hrončok
2020-04-29
1
-1/+1
*
bpo-32604: Add support for a "default" arg in channel_recv(). (GH-19770)
Eric Snow
2020-04-28
1
-0/+21
*
bpo-39966: Revert "bpo-25597: Ensure wraps' return value is used for magic me...
Karthikeyan Singaravelan
2020-04-28
2
-12/+10
*
bpo-40025: Require _generate_next_value_ to be defined before members (GH-19098)
Ethan Onstott
2020-04-28
2
-0/+15
*
Merge tag 'v3.9.0a6'
Łukasz Langa
2020-04-28
1
-34/+99
|
\
|
*
Python 3.9.0a6
v3.9.0a6
Łukasz Langa
2020-04-27
1
-34/+99
*
|
bpo-40334: Don't skip test_parser:test_trigget_memory_error (GH-19744)
Lysandros Nikolaou
2020-04-28
1
-1/+0
*
|
bpo-40334: Catch E_EOF error, when the tokenizer returns ERRORTOKEN (GH-19743)
Lysandros Nikolaou
2020-04-28
1
-2/+0
[next]