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
*
Use AsCharBuffer to get a C string out of a Python string.
Guido van Rossum
2007-05-09
1
-29/+16
*
Kill u"..." string quotes. Thought I already did that.
Guido van Rossum
2007-05-08
1
-8/+0
*
More coding by random modification.
Guido van Rossum
2007-05-04
1
-3/+3
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-22/+2
*
Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...
Georg Brandl
2007-03-18
1
-5/+25
*
Bytes literal.
Thomas Wouters
2007-02-23
1
-0/+8
*
Rip out 'long' and 'L'-suffixed integer literals.
Guido van Rossum
2007-01-15
1
-5/+1
*
PEP 3107 - Function Annotations thanks to Tony Lownds
Neal Norwitz
2006-12-28
1
-0/+2
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-1/+1
*
Remove support for backticks from the grammar and compiler.
Brett Cannon
2006-08-25
1
-2/+0
*
Killed the <> operator. You must now use !=.
Guido van Rossum
2006-08-24
1
-1/+0
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-9/+11
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-51/+59
*
Make 'python -tt' the default, meaning Python won't allow mixing tabs and
Thomas Wouters
2006-04-14
1
-35/+4
*
Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes
Thomas Wouters
2006-03-02
1
-0/+5
*
Patch #1440601: Add col_offset attribute to AST nodes.
Martin v. Löwis
2006-03-01
1
-0/+5
*
Change non-ASCII warning into a SyntaxError.
Martin v. Löwis
2006-02-28
1
-10/+6
*
Use Py_ssize_t to count the length.
Martin v. Löwis
2006-02-16
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-10/+10
*
Fix SF bug #1072182, problems with signed characters.
Neal Norwitz
2005-12-19
1
-1/+1
*
Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.
Neal Norwitz
2005-12-18
1
-0/+6
*
Fix some more memory leaks.
Neal Norwitz
2005-11-16
1
-6/+11
*
Free coding spec (cs) if there was an error to prevent mem leak. Maybe backp...
Neal Norwitz
2005-10-21
1
-0/+3
*
- Fix segfault with invalid coding.
Neal Norwitz
2005-10-02
1
-1/+4
*
Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file
Walter Dörwald
2005-07-12
1
-27/+45
*
Patch #802188: better parser error message for non-EOL following line cont.
Martin v. Löwis
2005-03-03
1
-1/+1
*
SF #941229: Decode source code with sys.stdin.encoding in interactive
Hye-Shik Chang
2004-08-04
1
-0/+61
*
PEP-0318, @decorator-style. In Guido's words:
Anthony Baxter
2004-08-02
1
-0/+2
*
Getting rid of all the code inside #ifdef macintosh too.
Jack Jansen
2003-11-20
1
-11/+0
*
Add URL for PEP to the source code encoding warning.
Marc-André Lemburg
2003-02-17
1
-6/+12
*
patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom
Just van Rossum
2003-02-09
1
-2/+2
*
Fix [ 665014 ] files with long lines and an encoding crash.
Mark Hammond
2003-01-14
1
-1/+2
*
Constify filenames and scripts. Fixes #651362.
Martin v. Löwis
2002-12-11
1
-3/+5
*
Fix compiler warning on HP-UX.
Neal Norwitz
2002-11-02
1
-2/+2
*
Patch #512981: Update readline input stream on sys.stdin/out change.
Martin v. Löwis
2002-10-26
1
-2/+2
*
Removed reliance on gcc/C99 extension.
Tim Peters
2002-09-03
1
-1/+3
*
Ignore encoding declarations inside strings. Fixes #603509.
Martin v. Löwis
2002-09-03
1
-1/+16
*
Squash a few calls to the hideously expensive PyObject_CallObject(o,a)
Guido van Rossum
2002-08-16
1
-3/+14
*
provide less mysterious error messages when seeing end-of-line in
Skip Montanaro
2002-08-15
1
-3/+6
*
Use Py_FatalError instead of abort.
Martin v. Löwis
2002-08-07
1
-2/+3
*
Fix PEP 263 code --without-unicode. Fixes #591943.
Martin v. Löwis
2002-08-07
1
-0/+18
*
Added a cast to shut up a compiler warning.
Jack Jansen
2002-08-05
1
-1/+1
*
Add 1 to lineno in deprecation warning. Fixes #590888.
Martin v. Löwis
2002-08-05
1
-1/+3
*
Make pgen compile with pydebug. Duplicate normalized names, as it may
Martin v. Löwis
2002-08-04
1
-2/+6
*
Group statements properly.
Martin v. Löwis
2002-08-04
1
-6/+12
*
Repaired a fatal compiler error in the debug build: it's not clear what
Tim Peters
2002-08-04
1
-1/+1
*
Squash compiler wng about signed-vs-unsigned mismatch.
Tim Peters
2002-08-04
1
-1/+1
*
Patch #534304: Implement phase 1 of PEP 263.
Martin v. Löwis
2002-08-04
1
-8/+440
*
Mass checkin of universal newline support.
Jack Jansen
2002-04-14
1
-4/+5
*
SF patch #455966: Allow leading 0 in float/imag literals.
Tim Peters
2001-08-30
1
-3/+22
[next]