- a0b6338 C++ compiler cleanup: cast signed to unsigned by Skip Montanaro · 19 years ago
- 08062d6 As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API by Neal Norwitz · 19 years ago
- 1149002 Fix the code in Parser/ to also compile with C++. This was mostly casts for by Anthony Baxter · 19 years ago
- 2c4e4f9 SF patch #1467512, fix double free with triple quoted string in standard build. by Neal Norwitz · 19 years ago
- c9d78aa Years in the making. by Tim Peters · 19 years ago
- 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 19 years ago
- 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 19 years ago
- 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
- 6cba256 Change non-ASCII warning into a SyntaxError. by Martin v. Löwis · 19 years ago
- f5adf1e Use Py_ssize_t to count the length. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
- db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
- dee2fd5 Fix some more memory leaks. by Neal Norwitz · 19 years ago
- c0d5faa Free coding spec (cs) if there was an error to prevent mem leak. Maybe backport candidate by Neal Norwitz · 19 years ago
- 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
- c1f5fff Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file by Walter Dörwald · 19 years ago
- 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 20 years ago
- 7df44b3 SF #941229: Decode source code with sys.stdin.encoding in interactive by Hye-Shik Chang · 20 years ago
- c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
- eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
- 1fb1400 Add URL for PEP to the source code encoding warning. by Marc-André Lemburg · 22 years ago
- f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 22 years ago
- a2e303c Fix [ 665014 ] files with long lines and an encoding crash. by Mark Hammond · 22 years ago
- 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
- e08e1bc Fix compiler warning on HP-UX. Cast param to isalnum() to int. by Neal Norwitz · 22 years ago
- 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
- 17db21f Removed reliance on gcc/C99 extension. by Tim Peters · 22 years ago
- f62a89b Ignore encoding declarations inside strings. Fixes #603509. by Martin v. Löwis · 22 years ago
- 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
- 118ec70 provide less mysterious error messages when seeing end-of-line in by Skip Montanaro · 22 years ago
- 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
- 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
- cf0a2cf Added a cast to shut up a compiler warning. by Jack Jansen · 22 years ago
- 725bb23 Add 1 to lineno in deprecation warning. Fixes #590888. by Martin v. Löwis · 22 years ago
- 1ee99d3 Make pgen compile with pydebug. Duplicate normalized names, as it may by Martin v. Löwis · 22 years ago
- cd280fb Group statements properly. by Martin v. Löwis · 22 years ago
- 2c3f9c6 Repaired a fatal compiler error in the debug build: it's not clear what by Tim Peters · 22 years ago
- 919603b Squash compiler wng about signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
- 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
- 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 23 years ago
- d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
- 9aa70d9 SF bug [#455775] float parsing discrepancy. by Tim Peters · 23 years ago
- 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
- cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 434d082 Support for three-token characters (**=, >>=, <<=) which was written by by Thomas Wouters · 24 years ago
- 23c9e00 Mass ANSIfication. by Thomas Wouters · 24 years ago
- 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
- dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- 6da3434 Trent Mick: familiar simple Win64 patches by Guido van Rossum · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 6c981ad Only write message about changed Tab size with -v. by Guido van Rossum · 25 years ago
- ab5ca15 Fix by Eric Raymond: make the code that looks for various bits of by Guido van Rossum · 25 years ago
- 86016cb Marc-Andre Lemburg: add new string token types u"..." and ur"..." by Guido van Rossum · 25 years ago
- d5516bc One more fprintf bites the dist -- use PySys_WriteStderr by Guido van Rossum · 26 years ago
- 6e73bf4 Replace all calls to fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
- 926f13a Add checking for inconsistent tab usage by Guido van Rossum · 27 years ago
- 54758fa Swap two statements in the dedent check loop. This makes absolutely by Guido van Rossum · 27 years ago
- 3568524 Fixed the bug in searching for triple quotes -- change the 'quote2' by Guido van Rossum · 27 years ago
- cf57d8b tok_nextc() should return unsigned characters, to avoid mistaking by Guido van Rossum · 27 years ago
- 86bea46 Another directory quickly renamed. by Guido van Rossum · 28 years ago
- 5026cb4 Now that the string-sig has settled on r"obin" strings, restrict the by Guido van Rossum · 28 years ago
- 2d45be1 (Jack:) On the Mac, give syntax error on \r. by Guido van Rossum · 28 years ago
- 24dacb3 Support for alternative string quotes (a"xx", b"xx", c"xx", ...). by Guido van Rossum · 28 years ago
- 408027e Rename DEBUG macro to Py_DEBUG by Guido van Rossum · 28 years ago
- fd8a393 Make gcc -Wall happy by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- faa436c use only j for imaginary constants by Guido van Rossum · 29 years ago
- f595fde changes for pow(**) and complex by Guido van Rossum · 29 years ago
- 3f6bb86 fix bogus resize length in nextc by Guido van Rossum · 29 years ago
- 94d32b1 ignore control-l in whitespace by Guido van Rossum · 29 years ago
- 2e96eb9 replace "\r\n" with "\n" at line end (Jim Ahlstrom) by Guido van Rossum · 29 years ago
- 78c0535 fix loop on unterminated triple quotes by Guido van Rossum · 30 years ago
- b9f8d6e Added 1995 to copyright message. by Guido van Rossum · 30 years ago
- 588633d Parser/tokenizer.c (tok_nextc): zap tok->buf after freeing; by Guido van Rossum · 30 years ago
- 1a817c0 * Parser/tokenizer.c (tok_nextc): count line numbers when parsing by Guido van Rossum · 30 years ago
- f4b1a64 * Parser/tokenizer.c: backup over illegal newline in string by Guido van Rossum · 30 years ago
- 8054fad Changes to accept double-quoted strings on input. by Guido van Rossum · 31 years ago
- a849b83 * selectmodule.c: fix (another!) two memory leaks -- this time in list2set by Guido van Rossum · 32 years ago
- 6ac258d * pythonrun.c: Print exception type+arg *after* stack trace instead of by Guido van Rossum · 32 years ago
- 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
- bab9d03 Copyright for 1992 added by Guido van Rossum · 33 years ago
- 4fe8729 Make tabs always 8 spaces wide -- it's more portable. by Guido van Rossum · 33 years ago
- 9430945 Add warning XXX that 09.9 isn't accepted. by Guido van Rossum · 33 years ago
- baf0ebf Added shift and mask ops. Allow numbers starting with a period. by Guido van Rossum · 33 years ago
- fbab905 Added 2-char tokens and new versions of comparisons by Guido van Rossum · 33 years ago
- 8c11a5c Completely ignore lines with only a newline token on them, except by Guido van Rossum · 33 years ago
- d6a15ad Generalize to macintosh. by Guido van Rossum · 33 years ago
- f023c46 Added recognition of 'l' or 'L' as long integer suffix by Guido van Rossum · 34 years ago
- f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
- b156d72 Changes for THINK C 4.0. by Guido van Rossum · 34 years ago
- 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
- a769172 Increment line number for continuation lines. by Guido van Rossum · 34 years ago
- 85a5fbb Initial revision by Guido van Rossum · 34 years ago