| Commit message (Expand) | Author | Age | Files | Lines |
* | #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 |
|
|
* | SF patch #1467512, fix double free with triple quoted string in standard build. | Neal Norwitz | 2006-04-10 | 1 | -6/+6 |
|
|
* | Years in the making. | Tim Peters | 2006-03-26 | 1 | -39/+44 |
|
|
* | Use macro versions instead of function versions when we already know the type. | Neal Norwitz | 2006-03-20 | 1 | -1/+3 |
|
|
* | 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 |
|
|