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
/
Parser
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-102711: Fix warnings found by clang (#102712)
Chenxi Mao
2023-03-28
1
-2/+2
*
gh-102255: Improve build support for Windows API partitions (GH-102256)
Max Bachmann
2023-03-09
1
-3/+5
*
gh-102416: Do not memoize incorrectly loop rules in the parser (#102467)
Pablo Galindo Salgado
2023-03-06
1
-216/+0
*
gh-100227: Move _str_replace_inf to PyInterpreterState (gh-102333)
Eric Snow
2023-02-28
1
-3/+1
*
Fix some typos in asdl_c.py (GH-101757)
abel1502
2023-02-10
1
-2/+2
*
GH-101578: Normalize the current exception (GH-101607)
Mark Shannon
2023-02-08
1
-9/+6
*
gh-100940: Change "char *str" to "const char *str" in KeywordToken: It is an...
Stepfen Shawn
2023-01-18
1
-1/+1
*
gh-101046: Fix a potential memory leak in the parser when raising MemoryError...
Pablo Galindo Salgado
2023-01-16
1
-0/+108
*
gh-81057: Move the Cached Parser Dummy Name to _PyRuntimeState (#100277)
Eric Snow
2022-12-16
1
-20/+2
*
gh-81057: Move More Globals to _PyRuntimeState (gh-100092)
Eric Snow
2022-12-07
1
-2/+2
*
gh-90110: Clean Up the C-analyzer Globals Lists (gh-100091)
Eric Snow
2022-12-07
1
-1/+2
*
gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...
Pablo Galindo Salgado
2022-12-06
1
-0/+4
*
gh-99891: Fix infinite recursion in the tokenizer when showing warnings (GH-9...
Pablo Galindo Salgado
2022-11-30
2
-0/+9
*
gh-90994: Improve error messages upon call arguments syntax errors (GH-96893)
Lysandros Nikolaou
2022-11-20
1
-1149/+1395
*
gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill...
Pablo Galindo Salgado
2022-11-20
1
-1/+6
*
gh-99211: Point to except/except* on syntax errors when mixing them (GH-99215)
Lysandros Nikolaou
2022-11-20
1
-671/+713
*
gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496)
Eric Snow
2022-11-15
1
-0/+1
*
gh-99300: Use Py_NewRef() in Python/Python-ast.c (#99499)
Victor Stinner
2022-11-15
1
-4/+5
*
gh-81057: Move Global Variables Holding Objects to _PyRuntimeState. (gh-99487)
Eric Snow
2022-11-14
1
-0/+4
*
gh-99300: Use Py_NewRef() in Parser/ directory (#99330)
Victor Stinner
2022-11-10
3
-9/+4
*
gh-99300: Use Py_NewRef() in Python/ directory (#99317)
Victor Stinner
2022-11-10
1
-8/+7
*
gh-99153: set location on SyntaxError for try with both except and except* (G...
Irit Katriel
2022-11-06
1
-3/+3
*
gh-98401: Invalid escape sequences emits SyntaxWarning (#99011)
Victor Stinner
2022-11-03
1
-2/+9
*
gh-98931: Improve error message when the user types 'import x from y' instead...
Pablo Galindo Salgado
2022-11-01
1
-391/+465
*
gh-97669: Create Tools/build/ directory (#97963)
Victor Stinner
2022-10-17
1
-1/+1
*
gh-97997: Add col_offset field to tokenizer and use that for AST nodes (#98000)
Lysandros Nikolaou
2022-10-07
2
-11/+43
*
gh-97973: Return all necessary information from the tokenizer (GH-97984)
Lysandros Nikolaou
2022-10-06
4
-137/+150
*
GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...
Mark Shannon
2022-10-05
1
-6/+3
*
gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)
Pablo Galindo Salgado
2022-09-27
1
-4/+15
*
gh-91210: Improve error message when non-default param follows default (GH-95...
Lysandros Nikolaou
2022-09-17
1
-345/+353
*
gh-96678: Fix UB of null pointer arithmetic (GH-96782)
Matthias Görgens
2022-09-13
1
-1/+1
*
gh-96268: Fix loading invalid UTF-8 (#96270)
Michael Droettboom
2022-09-07
1
-13/+45
*
gh-96611: Fix error message for invalid UTF-8 in mid-multiline string (#96623)
Michael Droettboom
2022-09-06
1
-0/+2
*
gh-96587: Raise `SyntaxError` for PEP654 on older `feature_version` (#96588)
Nikita Sobolev
2022-09-05
1
-1/+1
*
gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96499)
Gregory P. Smith
2022-09-02
1
-0/+23
*
gh-94996: Disallow lambda pos only params with feature_version < (3, 8) (GH-9...
Shantanu
2022-08-12
1
-2/+2
*
gh-94996: Disallow parsing pos only params with feature_version < (3, 8) (GH-...
Shantanu
2022-08-12
1
-2/+2
*
gh-95876: Fix format string in pegen error location code (#95877)
Christian Heimes
2022-08-11
1
-1/+1
*
gh-95355: Check tokens[0] after allocating memory (GH-95356)
Honglin Zhu
2022-07-28
1
-1/+1
*
gh-95185: Check recursion depth in the AST constructor (#95186)
Pablo Galindo Salgado
2022-07-24
1
-1/+36
*
gh-94949: Disallow parsing parenthesised ctx mgr with old feature_version (#9...
Shantanu
2022-07-18
1
-1/+1
*
gh-94947: Disallow parsing walrus with feature_version < (3, 8) (#94948)
Shantanu
2022-07-18
1
-1/+1
*
gh-94869: Fix the location in some expressions for multi-line f-string ast no...
Pablo Galindo Salgado
2022-07-16
1
-1/+4
*
[3.11] bpo-14916: interactive fd is not tied to stdin [type-bug] (#91469)
Paul m. p. Peny
2022-07-16
1
-1/+1
*
gh-94360: Fix a tokenizer crash when reading encoded files with syntax errors...
Pablo Galindo Salgado
2022-07-05
2
-5/+13
*
gh-94192: Fix error for dictionary literals with invalid expression as value....
wookie184
2022-06-26
1
-261/+326
*
gh-92858: Improve error message for some suites with syntax error before ':' ...
wookie184
2022-06-23
1
-362/+500
*
gh-84623: Remove unused imports (#94132)
Victor Stinner
2022-06-22
1
-1/+0
*
gh-93937: PyOS_StdioReadline() uses PyConfig.legacy_windows_stdio (#94024)
Victor Stinner
2022-06-20
1
-1/+2
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
2
-12/+6
[next]