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
*
[3.9] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96502)
Gregory P. Smith
2022-09-05
1
-0/+18
*
bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...
Miss Islington (bot)
2022-02-16
1
-10/+10
*
bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...
Miss Islington (bot)
2022-01-25
1
-2/+14
*
[3.9] bpo-46110: Add a recursion check to avoid stack overflow in the PEG par...
Pablo Galindo Salgado
2021-12-20
1
-2316/+3308
*
bpo-45866: pegen strips directory of "generated from" header (GH-29777) (GH-2...
Victor Stinner
2021-11-26
1
-1/+1
*
[3.9] bpo-45820: Fix a segfault when the parser fails without reading any inp...
Miss Islington (bot)
2021-11-18
1
-0/+8
*
bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are n...
Pablo Galindo Salgado
2021-11-17
1
-1/+1
*
bpo-45738: Fix computation of error location for invalid continuation charact...
Pablo Galindo Salgado
2021-11-14
2
-10/+3
*
[3.9] bpo-45494: Fix parser crash when reporting errors involving invalid con...
Łukasz Langa
2021-10-20
2
-88/+96
*
[3.9] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-esca...
Serhiy Storchaka
2021-10-14
1
-1/+1
*
[3.9] bpo-44947: Refine the syntax error for trailing commas in import statem...
Łukasz Langa
2021-08-18
1
-5/+8
*
[3.9] bpo-44885: Correct the ast locations of f-strings with format specs and...
Pablo Galindo Salgado
2021-08-12
1
-39/+31
*
[3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480)
Łukasz Langa
2021-07-30
1
-1/+1
*
[3.9] bpo-44409: Fix error location in tokenizer errors that happen during in...
Pablo Galindo
2021-06-14
1
-0/+1
*
[3.9] bpo-44385: Remove unused grammar rules (GH-26655) (GH-26659)
Lysandros Nikolaou
2021-06-10
1
-932/+467
*
[3.9] bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) (GH-26...
Batuhan Taskaya
2021-06-03
1
-4/+15
*
[3.9] bpo-44168: Fix error message in the parser for keyword arguments for in...
Pablo Galindo
2021-05-19
1
-287/+330
*
[3.9] bpo-43779: Fix possible refleak involving _PyArena_AddPyObject (GH-2528...
Erlend Egeberg Aasland
2021-04-09
1
-1/+4
*
bpo-43555: Report the column offset for invalid line continuation character (...
Miss Islington (bot)
2021-03-22
2
-6/+6
*
[3.9] bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)...
Pablo Galindo
2021-01-03
1
-1/+1
*
[3.9] bpo-40631: Disallow single parenthesized star target (GH-24027) (GH-24068)
Lysandros Nikolaou
2021-01-03
1
-540/+787
*
[3.9] bpo-42381: Allow walrus in set literals and set comprehensions (GH-2333...
Pablo Galindo
2020-11-18
1
-1120/+955
*
bpo-40998: Address compiler warnings found by ubsan (GH-20929)
Miss Islington (bot)
2020-11-18
1
-0/+3
*
bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) (GH-23329)
Lysandros Nikolaou
2020-11-16
1
-6/+6
*
[3.9] bpo-42218: Correctly handle errors in left-recursive rules (GH-23065) (...
Lysandros Nikolaou
2020-10-31
1
-0/+18
*
[3.9] bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry...
Pablo Galindo
2020-10-31
3
-4/+3
*
[3.9] bpo-42123: Run the parser two times and only enable invalid rules on th...
Lysandros Nikolaou
2020-10-28
3
-48/+62
*
[3.9] bpo-41659: Disallow curly brace directly after primary (GH-22996) (#23006)
Lysandros Nikolaou
2020-10-27
1
-167/+234
*
bpo-42150: Avoid buffer overflow in the new parser (GH-22978)
Miss Skeleton (bot)
2020-10-25
1
-1/+2
*
[3.9] bpo-41979: Accept star-unpacking on with-item targets (GH-22611) (GH-22...
Batuhan Taskaya
2020-10-09
1
-6/+9
*
[3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258)
Pablo Galindo
2020-09-15
1
-41/+20
*
[3.9] bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in ...
Pablo Galindo
2020-09-03
3
-10/+22
*
[3.9] bpo-41690: Use a loop to collect args in the parser instead of recursio...
Pablo Galindo
2020-09-02
3
-503/+625
*
[3.9] bpo-41194: Convert _ast extension to PEP 489 (GH-21807)
Victor Stinner
2020-08-10
1
-47/+75
*
bpo-38156: Fix compiler warning in PyOS_StdioReadline() (GH-21721)
Miss Islington (bot)
2020-08-04
1
-1/+1
*
closes bpo-38156: Always handle interrupts in PyOS_StdioReadline. (GH-21569)
Miss Islington (bot)
2020-07-29
1
-30/+14
*
[3.9] Validate the AST produced by the parser in debug mode (GH-21643) (GH-21...
Pablo Galindo
2020-07-27
1
-0/+9
*
Fix trivial typo in the PEG string parser (GH-21508)
Miss Islington (bot)
2020-07-16
1
-1/+1
*
Fix possibly-unitialized warning in string_parser.c. (GH-21503)
Miss Islington (bot)
2020-07-16
1
-15/+16
*
bpo-41215: Make assertion in the new parser more strict (GH-21364)
Miss Islington (bot)
2020-07-06
1
-1/+1
*
[3.9] bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH...
Pablo Galindo
2020-07-06
2
-9/+12
*
[3.9] bpo-41194: The _ast module cannot be loaded more than once (GH-21290) (...
Victor Stinner
2020-07-03
1
-96/+111
*
[3.9] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...
Guido van Rossum
2020-06-28
1
-2/+3
*
[3.9] bpo-41076: Pre-feed the parser with the f-string expression location (G...
Pablo Galindo
2020-06-28
2
-242/+25
*
[3.9] bpo-40769: Allow extra surrounding parentheses for invalid annotated as...
Pablo Galindo
2020-06-27
1
-205/+261
*
bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...
Miss Islington (bot)
2020-06-27
1
-0/+21
*
[3.9] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH...
Lysandros Nikolaou
2020-06-27
1
-7/+7
*
[3.9] bpo-41119: Output correct error message for list/tuple followed by colo...
Lysandros Nikolaou
2020-06-26
1
-320/+284
*
[3.9] bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the gramma...
Lysandros Nikolaou
2020-06-21
2
-7/+26
*
bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970)
Miss Islington (bot)
2020-06-20
2
-2/+2
[next]