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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-105148: make _PyASTOptimizeState internal to ast_opt.c (#105149)
Irit Katriel
2023-05-31
3
-17/+21
*
gh-104909: Split BINARY_OP into micro-ops (#104910)
Guido van Rossum
2023-05-31
3
-624/+753
*
gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)
Inada Naoki
2023-05-31
3
-171/+60
*
gh-105042: Disable unmatched parens syntax error in python tokenize (#105061)
Lysandros Nikolaou
2023-05-30
1
-1/+1
*
gh-105069: Add a readline-like callable to the tokenizer to consume input ite...
Pablo Galindo Salgado
2023-05-30
2
-22/+31
*
gh-105035: fix super() calls on unusual types (e.g. meta-types) (#105094)
Carl Meyer
2023-05-30
2
-221/+225
*
gh-80064: Fix is_valid_wide_char() return type (#105099)
Victor Stinner
2023-05-30
1
-1/+1
*
gh-105017: Include CRLF lines in strings and column numbers (#105030)
Marta Gómez Macías
2023-05-28
1
-2/+7
*
gh-104976: Ensure trailing dedent tokens are emitted as the previous tokenize...
Pablo Galindo Salgado
2023-05-26
1
-3/+23
*
gh-104972: Ensure that line attributes in tokens in the tokenize module are c...
Pablo Galindo Salgado
2023-05-26
1
-5/+4
*
gh-104773: PEP 594: Remove the imghdr module (#104777)
Victor Stinner
2023-05-26
1
-1/+0
*
gh-104799: Move location of type_params AST fields (#104828)
Jelle Zijlstra
2023-05-26
1
-163/+162
*
GH-89091: raise `RuntimeWarning` for unawaited async generator methods (#104611)
Kumar Aditya
2023-05-26
1
-0/+14
*
gh-104773: PEP 594: Remove the chunk module (#104868)
Victor Stinner
2023-05-25
1
-1/+0
*
gh-104773: PEP 594: Remove the audioop module (#104937)
Victor Stinner
2023-05-25
1
-1/+0
*
gh-104773: PEP 594: Remove the aifc module (#104933)
Victor Stinner
2023-05-25
1
-1/+0
*
gh-104773: PEP 594: Remove the uu module (#104932)
Victor Stinner
2023-05-25
1
-1/+0
*
gh-104773: PEP 594: Remove the crypt module (#104908)
Victor Stinner
2023-05-25
1
-2/+0
*
gh-104773: Remove the msilib package (GH-104911)
Zachary Ware
2023-05-25
1
-2/+0
*
gh-104820: Fixes os.stat on Windows to better handle file systems that do not...
Steve Dower
2023-05-24
1
-1/+2
*
gh-104773: PEP 594: Remove the xdrlib module (#104900)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the nis module (#104897)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the nntplib module (#104894)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the spwd module (#104871)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the mailcap module (#104867)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the sunau module (#104863)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the ossaudiodev module (#104862)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove the pipes module (#104848)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104825: Remove implicit newline in the line attribute in tokens emitted in...
Pablo Galindo Salgado
2023-05-24
1
-0/+4
*
gh-104773: PEP 594: Remove the sndhdr module (#104774)
Victor Stinner
2023-05-24
1
-1/+0
*
gh-104773: PEP 594: Remove cgi and cgitb modules (#104775)
Victor Stinner
2023-05-24
1
-2/+0
*
gh-104780: Remove 2to3 program and lib2to3 module (#104781)
Victor Stinner
2023-05-23
1
-1/+0
*
gh-104773: PEP 594: Remove the telnetlib module (#104778)
Victor Stinner
2023-05-23
1
-1/+0
*
gh-104741: Add line number attribute to indentation error exception (#104743)
Marta Gómez Macías
2023-05-22
1
-6/+9
*
gh-104656: Rename typeparams AST node to type_params (#104657)
Jelle Zijlstra
2023-05-22
5
-219/+221
*
gh-102856: Tokenize performance improvement (#104731)
Marta Gómez Macías
2023-05-22
1
-1/+16
*
gh-104686: Fix tracing for decorated classes (#104708)
Jelle Zijlstra
2023-05-21
1
-0/+4
*
gh-103295: expose API for writing perf map files (#103546)
gsallam
2023-05-21
3
-69/+96
*
gh-102856: Python tokenizer implementation for PEP 701 (#104323)
Marta Gómez Macías
2023-05-21
2
-22/+140
*
gh-104640: Disallow walrus in comprehension within type scopes (#104641)
Jelle Zijlstra
2023-05-19
1
-4/+31
*
GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...
Mark Shannon
2023-05-19
1
-4/+0
*
gh-104619: never leak comprehension locals to outer locals() (#104637)
Carl Meyer
2023-05-19
1
-21/+19
*
gh-104602: ensure all cellvars are known up front (#104603)
Carl Meyer
2023-05-19
2
-20/+21
*
gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)
Carl Meyer
2023-05-18
2
-2/+24
*
GH-96803: Document and test new unstable internal frame API functions (GH-104...
Mark Shannon
2023-05-18
1
-2/+2
*
GH-104580: Don't cache eval breaker in interpreter (GH-104581)
Mark Shannon
2023-05-18
4
-258/+256
*
gh-104374: Remove access to class scopes for inlined comprehensions (#104528)
Jelle Zijlstra
2023-05-18
2
-7/+18
*
GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...
Mark Shannon
2023-05-17
2
-3/+1564
*
gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...
Jelle Zijlstra
2023-05-17
1
-4/+4
*
GH-103906: Remove immortal refcounting in the interpreter (GH-103909)
Brandt Bucher
2023-05-16
2
-509/+473
[next]