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
*
bpo-36459: Fix a possible double PyMem_FREE() due to tokenizer.c's tok_nextc(...
Miss Islington (bot)
2019-03-28
1
-1/+0
*
bpo-36367: Free buffer if realloc fails in tokenize.c (GH-12442) (GH-12470)
Victor Stinner
2019-03-20
1
-2/+8
*
bpo-25083: Python can sometimes create incorrect .pyc files (GH-8449)
tzickel
2018-09-10
1
-0/+5
*
bpo-33645: Fix an "unknown parsing error" in the parser. (GH-7119)
Serhiy Storchaka
2018-05-31
1
-0/+2
*
properly handle the single null-byte file (closes #24022)
Benjamin Peterson
2016-09-19
1
-1/+1
*
Issue #25388: Fixed tokenizer hang when processing undecodable source code
Serhiy Storchaka
2015-11-14
1
-3/+6
*
add missing NULL checks to get_coding_spec (closes #24854)
Benjamin Peterson
2015-08-14
1
-1/+4
*
Issue #22221: Backported fixes from Python 3 (issue #18960).
Serhiy Storchaka
2014-09-05
1
-3/+17
*
Issue #21789: fix broken link (reported by Jan Varho)
Ned Deily
2014-06-17
1
-1/+1
*
allow the keyword else immediately after (no space) an integer (closes #21642)
Benjamin Peterson
2014-06-07
1
-5/+14
*
complain if the codec doesn't return unicode
Benjamin Peterson
2013-12-28
1
-0/+6
*
Issue #18038: SyntaxError raised during compilation sources with illegal
Serhiy Storchaka
2013-06-09
1
-7/+7
*
Issue #9020: The Py_IS* macros from pyctype.h should generally only be
Stefan Krah
2010-06-24
1
-1/+1
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-1370/+1370
*
use our own locale independent ctype macros
Benjamin Peterson
2010-04-03
1
-19/+3
*
ensure that the locale does not affect the tokenization of identifiers
Benjamin Peterson
2010-04-03
1
-4/+18
*
Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt
Victor Stinner
2010-03-10
1
-1/+5
*
Issue #7820: The parser tokenizer restores all bytes in the right if the BOM
Victor Stinner
2010-03-02
1
-22/+32
*
rewrite translate_newlines for clarity
Benjamin Peterson
2009-12-06
1
-12/+11
*
fix several compile() issues by translating newlines in the tokenizer
Benjamin Peterson
2009-11-12
1
-16/+66
*
spelling
Benjamin Peterson
2009-11-07
1
-1/+1
*
fix some coding style
Benjamin Peterson
2009-10-09
1
-13/+30
*
don't mask encoding errors when decoding a string #6289
Benjamin Peterson
2009-06-16
1
-4/+1
*
#3367: revert rev. 65539: this change causes test_parser to fail
Andrew M. Kuchling
2008-08-05
1
-1/+1
*
#3367 from Kristjan Valur Jonsson:
Andrew M. Kuchling
2008-08-05
1
-1/+1
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-16/+16
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-16/+16
*
Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).
Amaury Forgeot d'Arc
2008-04-24
1
-1/+1
*
Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.
Neal Norwitz
2008-03-28
1
-8/+0
*
Make Py3k warnings consistent w.r.t. punctuation; also respect the
Georg Brandl
2008-03-25
1
-1/+1
*
Finished backporting PEP 3127, Integer Literal Support and Syntax.
Eric Smith
2008-03-17
1
-1/+25
*
Add assertion that we do not blow out newl
Neal Norwitz
2008-01-27
1
-0/+1
*
Fixed bug #1915: Python compiles with --enable-unicode=no again. However seve...
Christian Heimes
2008-01-23
1
-2/+1
*
Add a "const" to make gcc happy.
Georg Brandl
2008-01-21
1
-1/+1
*
Issue #1882: when compiling code from a string, encoding cookies in the
Georg Brandl
2008-01-21
1
-2/+13
*
Fix #1679: "0x" was taken as a valid integer literal.
Georg Brandl
2008-01-19
1
-0/+7
*
Added bytes and b'' as aliases for str and ''
Christian Heimes
2008-01-18
1
-0/+8
*
Fix #define ordering.
Georg Brandl
2008-01-07
1
-3/+2
*
Make Python compile with --disable-unicode.
Georg Brandl
2008-01-07
1
-0/+2
*
Warning "<> not supported in 3.x" should be enabled only when the -3 option i...
Amaury Forgeot d'Arc
2007-11-24
1
-1/+1
*
Fixed problems in the last commit. Filenames and line numbers weren't reporte...
Christian Heimes
2007-11-23
1
-9/+11
*
Applied patch #1754273 and #1754271 from Thomas Glee
Christian Heimes
2007-11-23
1
-1/+10
*
Change a PyErr_Print() into a PyErr_Clear(),
Guido van Rossum
2007-10-15
1
-1/+1
*
Patch #1031213: Decode source line in SyntaxErrors back to its original
Martin v. Löwis
2007-09-04
1
-0/+62
*
Comment grammar
Andrew M. Kuchling
2006-10-06
1
-1/+1
*
Don't truncate if size_t is bigger than uint
Neal Norwitz
2006-06-12
1
-1/+1
*
Patch #1357836:
Neal Norwitz
2006-06-02
1
-9/+11
*
C++ compiler cleanup: cast signed to unsigned
Skip Montanaro
2006-04-18
1
-1/+1
*
As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API
Neal Norwitz
2006-04-11
1
-22/+22
*
Fix the code in Parser/ to also compile with C++. This was mostly casts for
Anthony Baxter
2006-04-11
1
-12/+13
[next]