| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 60350-60363 via svnmerge from | Christian Heimes | 2008-01-27 | 1 | -0/+1 |
|
|
* | Merged revisions 60176-60209 via svnmerge from | Christian Heimes | 2008-01-23 | 1 | -1/+1 |
|
|
* | Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge... | Georg Brandl | 2008-01-21 | 1 | -2/+13 |
|
|
* | Merged revisions 60080-60089,60091-60093 via svnmerge from | Georg Brandl | 2008-01-19 | 1 | -0/+19 |
|
|
* | More PyImport_ImportModule -> PyImport_ImportModuleNoBlock | Christian Heimes | 2008-01-03 | 1 | -1/+1 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Problem found while converting from PyBytes to PyString: | Amaury Forgeot d'Arc | 2007-11-22 | 1 | -7/+17 |
|
|
* | Cleanup of tokenizer.c. | Guido van Rossum | 2007-11-16 | 1 | -61/+47 |
|
|
* | Correction for issue1134: all source files with a coding spec, except latin-1 | Amaury Forgeot d'Arc | 2007-11-15 | 1 | -14/+29 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -12/+11 |
|
|
* | Issue 1267, continued. | Guido van Rossum | 2007-10-22 | 1 | -16/+20 |
|
|
* | Make sure the malloc'ed string has space for the null byte. | Brett Cannon | 2007-10-21 | 1 | -1/+1 |
|
|
* | Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to the | Brett Cannon | 2007-10-20 | 1 | -4/+11 |
|
|
* | Plug a memory leak where a struct tok_state was not being freed. | Brett Cannon | 2007-10-20 | 1 | -3/+11 |
|
|
* | Patch 1267 by Christian Heimes. | Guido van Rossum | 2007-10-19 | 1 | -1/+22 |
|
|
* | Fix another stray PyString reference that should be PyBytes; and its comment. | Guido van Rossum | 2007-10-10 | 1 | -2/+2 |
|
|
* | Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytes | Guido van Rossum | 2007-10-10 | 1 | -5/+10 |
|
|
* | Use an enum for decoding_state. It makes the code a little more | Neil Schemenauer | 2007-09-21 | 1 | -11/+11 |
|
|
* | Merged revisions 57778-58052 via svnmerge from | Thomas Wouters | 2007-09-08 | 1 | -0/+62 |
|
|
* | Convert code from sys.stdin.encoding to UTF-8 in | Martin v. Löwis | 2007-09-04 | 1 | -1/+35 |
|
|
* | Fix an outdated URL in a SyntaxError message. | Guido van Rossum | 2007-08-30 | 1 | -1/+1 |
|
|
* | Fix issue # 1037 (sort of). | Guido van Rossum | 2007-08-29 | 1 | -2/+8 |
|
|
* | Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but | Guido van Rossum | 2007-08-29 | 1 | -1/+2 |
|
|
* | Implement PEP 3131. Add isidentifier to str. | Martin v. Löwis | 2007-08-15 | 1 | -3/+26 |
|
|
* | Fix refleaks from execfile('file that contains a # coding: line') | Neal Norwitz | 2007-08-12 | 1 | -11/+21 |
|
|
* | Fix problem when exec'ing a string with a coding | Neal Norwitz | 2007-08-11 | 1 | -1/+1 |
|
|
* | Implement PEP 3120. | Martin v. Löwis | 2007-07-29 | 1 | -5/+34 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -12/+21 |
|
|
* | Rip out the file object's implementation. | Guido van Rossum | 2007-06-12 | 1 | -64/+0 |
|
|
* | Make identifiers str (not str8) objects throughout. | Martin v. Löwis | 2007-06-10 | 1 | -2/+13 |
|
|
* | tokenizer.c: make coding markup work again. | Guido van Rossum | 2007-06-07 | 1 | -13/+17 |
|
|
* | 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 |
|
|