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
/
tokenizer.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-99300: Use Py_NewRef() in Parser/ directory (#99330)
Victor Stinner
2022-11-10
1
-2/+1
*
gh-97997: Add col_offset field to tokenizer and use that for AST nodes (#98000)
Lysandros Nikolaou
2022-10-07
1
-11/+41
*
gh-97973: Return all necessary information from the tokenizer (GH-97984)
Lysandros Nikolaou
2022-10-06
1
-103/+117
*
gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)
Pablo Galindo Salgado
2022-09-27
1
-4/+15
*
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-94360: Fix a tokenizer crash when reading encoded files with syntax errors...
Pablo Galindo Salgado
2022-07-05
1
-1/+9
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
1
-5/+5
*
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Kumar Aditya
2022-05-27
1
-12/+0
*
gh-93103: Parser uses PyConfig.parser_debug instead of Py_DebugFlag (#93106)
Victor Stinner
2022-05-24
1
-1/+4
*
gh-92651: Remove the Include/token.h header file (#92652)
Victor Stinner
2022-05-11
1
-3/+3
*
gh-87999: Change warning type for numeric literal followed by keyword (GH-91980)
Serhiy Storchaka
2022-04-27
1
-4/+6
*
bpo-46315: Use fopencookie only on Emscripten 3.x and newer (GH-32266)
Christian Heimes
2022-04-02
1
-1/+1
*
bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)
Hugo van Kemenade
2022-03-30
1
-1/+1
*
bpo-46315: Use fopencookie() to avoid dup() in _PyTokenizer_FindEncodingFilen...
Christian Heimes
2022-03-22
1
-6/+34
*
bpo-46920: Remove code that has explainers why it was disabled (GH-31813)
Oleg Iarygin
2022-03-14
1
-24/+0
*
bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...
Serhiy Storchaka
2022-02-22
1
-0/+3
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-9/+10
*
bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010)
Pablo Galindo Salgado
2022-02-08
1
-10/+16
*
bpo-14916: use specified tokenizer fd for file input (GH-31006)
Paul m. p. P
2022-02-01
1
-1/+1
*
bpo-46091: Correctly calculate indentation levels for whitespace lines with c...
Pablo Galindo Salgado
2022-01-25
1
-13/+33
*
bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...
Kumar Aditya
2021-12-12
1
-1/+1
*
bpo-46054: Fix parsing error when parsing non-utf8 characters in source files...
Pablo Galindo Salgado
2021-12-12
1
-8/+5
*
Ensure the str member of the tokenizer is always initialised (GH-29681)
Pablo Galindo Salgado
2021-11-21
1
-1/+1
*
bpo-45811: Improve error message when source code contains invisible control ...
Pablo Galindo Salgado
2021-11-20
1
-0/+6
*
bpo-45738: Fix computation of error location for invalid continuation (GH-29550)
Pablo Galindo Salgado
2021-11-14
1
-1/+0
*
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-45434: Mark the PyTokenizer C API as private (GH-28924)
Victor Stinner
2021-10-13
1
-27/+20
*
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
*
Update URLs in comments and metadata to use HTTPS (GH-27458)
Noah Kantrowitz
2021-07-30
1
-1/+1
*
bpo-44317: Improve tokenizer errors with more informative locations (GH-26555)
Pablo Galindo Salgado
2021-07-10
1
-18/+54
*
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
*
bpo-43833: Emit warnings for numeric literals followed by keyword (GH-25466)
Serhiy Storchaka
2021-06-08
1
-0/+128
*
bpo-44201: Avoid side effects of "invalid_*" rules in the REPL (GH-26298)
Pablo Galindo
2021-05-22
1
-0/+9
*
Fix tokenizer error when raw decoding null bytes (GH-25080)
Pablo Galindo
2021-03-29
1
-1/+4
*
bpo-25643: Refactor the C tokenizer into smaller, logical units (GH-25050)
Pablo Galindo
2021-03-28
1
-354/+332
*
bpo-43410: Fix crash in the parser when producing syntax errors when reading ...
Pablo Galindo
2021-03-14
1
-26/+52
*
bpo-40176: Improve error messages for unclosed string literals (GH-19346)
Batuhan Taskaya
2021-01-20
1
-10/+16
*
bpo-42864: Fix compiler warning in the tokenizer with the new paren stack for...
Pablo Galindo
2021-01-20
1
-1/+1
*
bpo-42864: Improve error messages regarding unclosed parentheses (GH-24161)
Pablo Galindo
2021-01-19
1
-1/+4
*
bpo-42827: Fix crash on SyntaxError in multiline expressions (GH-24140)
Lysandros Nikolaou
2021-01-14
1
-0/+21
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-30/+30
*
bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)
Victor Stinner
2020-06-15
1
-1/+1
*
bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)
Lysandros Nikolaou
2020-06-10
1
-1/+2
[next]