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
*
bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are n...
Pablo Galindo Salgado
2021-11-16
1
-1/+1
*
bpo-45820: Fix a segfault when the parser fails without reading any input (GH...
Pablo Galindo Salgado
2021-11-16
1
-0/+8
*
bpo-45738: Fix computation of error location for invalid continuation (GH-29550)
Pablo Galindo Salgado
2021-11-14
2
-11/+5
*
bpo-45764: improve error message when missing '(' after 'def' (GH-29484)
Carl Friedrich Bolz-Tereick
2021-11-09
1
-12/+12
*
bpo-45716: Improve the error message when using True/False/None as keywords i...
Pablo Galindo Salgado
2021-11-05
1
-689/+795
*
bpo-44257: fix "assigment_expr" typo + regenerate the grammar, and remove unu...
wim glenn
2021-11-03
1
-60/+60
*
bpo-45562: Ensure all tokenizer debug messages are printed to stderr (GH-29270)
Pablo Galindo Salgado
2021-10-28
1
-1/+1
*
bpo-45562: Print tokenizer debug messages to stderr (GH-29250)
Pablo Galindo Salgado
2021-10-27
1
-4/+4
*
bpo-45574: fix warning about `print_escape` being unused (GH-29172)
Nikita Sobolev
2021-10-22
1
-0/+2
*
bpo-45562: Only show debug output from the parser in debug builds (GH-29140)
Pablo Galindo Salgado
2021-10-22
1
-0/+2
*
bpo-45494: Fix parser crash when reporting errors involving invalid continuat...
Pablo Galindo Salgado
2021-10-19
2
-122/+130
*
bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...
Serhiy Storchaka
2021-10-14
1
-1/+1
*
bpo-45434: Mark the PyTokenizer C API as private (GH-28924)
Victor Stinner
2021-10-13
4
-42/+35
*
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Victor Stinner
2021-10-13
1
-0/+1
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-0/+1
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-1/+1
*
bpo-45408: Don't override previous tokenizer errors in the second parser pass...
Pablo Galindo Salgado
2021-10-07
1
-1/+4
*
Fix typos in the Objects directory (GH-28766)
Christian Clauss
2021-10-06
1
-1/+1
*
Optimized code format (GH-28599)
Rajendra arora
2021-09-28
1
-3/+1
*
Fixed typo in "decclarations" (GH-28578)
Rajendra arora
2021-09-28
1
-1/+1
*
bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...
Pablo Galindo Salgado
2021-09-27
3
-6/+18
*
Extract visitors from the grammar nodes and call makers in the peg generator ...
Pablo Galindo Salgado
2021-09-05
1
-167/+167
*
bpo-44947: Refine the syntax error for trailing commas in import statements (...
Pablo Galindo Salgado
2021-08-18
1
-5/+8
*
Update pegen to use the latest upstream developments (GH-27586)
Pablo Galindo Salgado
2021-08-12
3
-41/+55
*
bpo-44885: Correct the ast locations of f-strings with format specs and repea...
Pablo Galindo Salgado
2021-08-12
1
-38/+30
*
bpo-44854: Remove trailing whitespaces (GH-27689)
Serhiy Storchaka
2021-08-09
1
-1/+1
*
bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...
Pablo Galindo Salgado
2021-08-05
1
-553/+610
*
bpo-44792: Improve syntax errors for if expressions (GH-27506)
Miguel Brito
2021-08-02
1
-0/+33
*
bpo-34013: Don't consider a grouped expression when reporting legacy print sy...
Pablo Galindo Salgado
2021-08-01
1
-5/+7
*
Divide the grammar into sections to improve readability (GH-27502)
Pablo Galindo Salgado
2021-07-31
1
-6585/+6583
*
Update URLs in comments and metadata to use HTTPS (GH-27458)
Noah Kantrowitz
2021-07-30
1
-1/+1
*
bpo-34013: Move the Python 2 hints from the exception constructor to the pars...
Pablo Galindo Salgado
2021-07-27
1
-7/+7
*
bpo-34013: Generalize the invalid legacy statement error message (GH-27389)
Pablo Galindo Salgado
2021-07-27
3
-243/+322
*
bpo-43950: Distinguish errors happening on character offset decoding (GH-27217)
Batuhan Taskaya
2021-07-20
1
-5/+13
*
Remove unnecessary 'invalid_primary' rule in the parser (GH-27186)
Pablo Galindo Salgado
2021-07-16
1
-304/+237
*
bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)
Pablo Galindo Salgado
2021-07-10
1
-18/+54
*
bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)
Ammar Askar
2021-07-04
2
-23/+24
*
bpo-40528: fix is_simple(sum)s behavior for attributes (GH-26918)
Batuhan Taskaya
2021-06-27
1
-6/+10
*
bpo-44456: Improve the syntax error when mixing keyword and positional patter...
Pablo Galindo
2021-06-24
3
-464/+638
*
bpo-40528: move asdl identifier collection to the new metadata system (GH-26858)
Batuhan Taskaya
2021-06-24
1
-49/+51
*
bpo-40528: Implement a metadata system for ASDL Generator (GH-20193)
Batuhan Taskaya
2021-06-22
1
-24/+75
*
bpo-44409: Fix error location in tokenizer errors that happen during initiali...
Pablo Galindo
2021-06-14
1
-0/+1
*
Fix typos in multiple files (GH-26689)
Binbin
2021-06-13
1
-3/+3
*
bpo-44396: Update multi-line-start location when reallocating tokenizer buffe...
Pablo Galindo
2021-06-12
1
-0/+5
*
Add more const modifiers. (GH-26691)
Serhiy Storchaka
2021-06-12
3
-15/+15
*
bpo-44368: Improve syntax errors with invalid as pattern targets (GH-26632)
Pablo Galindo
2021-06-10
1
-213/+313
*
bpo-44385: Remove unused grammar rules (GH-26655)
Lysandros Nikolaou
2021-06-10
1
-1256/+791
*
bpo-44368: Ensure we don't raise incorrect custom syntax errors with soft key...
Pablo Galindo
2021-06-09
1
-4/+11
*
bpo-44345: Fix 'generated by' comment in parser.c (GH-26615)
Akira Nonaka
2021-06-09
1
-1/+1
*
bpo-44349: Fix edge case when displaying text from files with encoding in syn...
Pablo Galindo
2021-06-08
1
-2/+5
[next]