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] 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
*
[3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) ...
Lysandros Nikolaou
2020-06-19
3
-1429/+1738
*
bpo-40958: Avoid buffer overflow in the parser when indexing the current line...
Miss Islington (bot)
2020-06-16
2
-13/+11
*
bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)
Miss Islington (bot)
2020-06-15
1
-1/+1
*
[3.9] Improve readability and style in parser files (GH-20884) (GH-20885)
Pablo Galindo
2020-06-15
2
-119/+160
*
[3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814)
Pablo Galindo
2020-06-11
1
-7/+7
*
bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)
Miss Islington (bot)
2020-06-11
1
-1/+2
*
Raise specialised syntax error for invalid lambda parameters (GH-20776)
Miss Islington (bot)
2020-06-10
1
-407/+712
*
bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...
Miss Islington (bot)
2020-06-08
2
-234/+429
*
bpo-40904: Fix segfault in the new parser with f-string containing yield stat...
Miss Islington (bot)
2020-06-08
1
-0/+3
*
bpo-40880: Fix invalid read in newline_in_string in pegen.c (GH-20666)
Miss Islington (bot)
2020-06-06
1
-2/+2
[next]