Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mass ANSIfication. | Thomas Wouters | 2000-07-22 | 1 | -25/+12 |
| | | | | | | Work around intrcheck.c's desire to pass 'PyErr_CheckSignals' to 'Py_AddPendingCall' by providing a (static) wrapper function that has the right number of arguments. | ||||
* | Create two new exceptions: IndentationError and TabError. These are | Fred Drake | 2000-07-11 | 1 | -9/+5 |
| | | | | | | | used for indentation related errors. This patch includes Ping's improvements for indentation-related error messages. Closes SourceForge patches #100734 and #100856. | ||||
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -4/+4 |
| | |||||
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
| | |||||
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
| | |||||
* | Trent Mick: familiar simple Win64 patches | Guido van Rossum | 2000-06-28 | 1 | -3/+3 |
| | |||||
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -6/+7 |
| | | | | | | | | | | For more comments, read the patches@python.org archives. For documentation read the comments in mymalloc.h and objimpl.h. (This is not exactly what Vladimir posted to the patches list; I've made a few changes, and Vladimir sent me a fix in private email for a problem that only occurs in debug mode. I'm also holding back on his change to main.c, which seems unnecessary to me.) | ||||
* | Only write message about changed Tab size with -v. | Guido van Rossum | 2000-04-03 | 1 | -1/+2 |
| | |||||
* | Fix by Eric Raymond: make the code that looks for various bits of | Guido van Rossum | 2000-03-31 | 1 | -15/+30 |
| | | | | | tab-setting magic much smarter, more correct, and more easily extensible. | ||||
* | Marc-Andre Lemburg: add new string token types u"..." and ur"..." | Guido van Rossum | 2000-03-10 | 1 | -0/+10 |
| | | | | (Unicode and raw Unicode). | ||||
* | One more fprintf bites the dist -- use PySys_WriteStderr | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| | |||||
* | Replace all calls to fprintf(stderr, ...) with PySys_WriteStderr(...). | Guido van Rossum | 1998-08-25 | 1 | -5/+6 |
| | |||||
* | Add checking for inconsistent tab usage | Guido van Rossum | 1998-04-09 | 1 | -3/+43 |
| | |||||
* | Swap two statements in the dedent check loop. This makes absolutely | Guido van Rossum | 1998-02-16 | 1 | -1/+1 |
| | | | | | no difference, but avoids triggering an optimizer bug in the AIX compiler where the loop unrolling does the wrong thing... | ||||
* | Fixed the bug in searching for triple quotes -- change the 'quote2' | Guido van Rossum | 1998-02-16 | 1 | -2/+2 |
| | | | | | variable from a pointer to an index, so a realloc() of the buffer won't disturb it. Problem found by Vladimir Marangozov. | ||||
* | tok_nextc() should return unsigned characters, to avoid mistaking | Guido van Rossum | 1998-01-19 | 1 | -2/+10 |
| | | | | '\377' for EOF. | ||||
* | Another directory quickly renamed. | Guido van Rossum | 1997-04-29 | 1 | -25/+27 |
| | |||||
* | Now that the string-sig has settled on r"obin" strings, restrict the | Guido van Rossum | 1997-04-25 | 1 | -3/+7 |
| | | | | <letter><string> notation to 'r' and 'R'. | ||||
* | (Jack:) On the Mac, give syntax error on \r. | Guido van Rossum | 1997-04-11 | 1 | -0/+11 |
| | |||||
* | Support for alternative string quotes (a"xx", b"xx", c"xx", ...). | Guido van Rossum | 1997-04-06 | 1 | -4/+9 |
| | |||||
* | Rename DEBUG macro to Py_DEBUG | Guido van Rossum | 1996-12-30 | 1 | -1/+1 |
| | |||||
* | Make gcc -Wall happy | Guido van Rossum | 1996-12-02 | 1 | -1/+0 |
| | |||||
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
| | |||||
* | use only j for imaginary constants | Guido van Rossum | 1996-01-26 | 1 | -2/+2 |
| | |||||
* | changes for pow(**) and complex | Guido van Rossum | 1996-01-12 | 1 | -1/+17 |
| | |||||
* | fix bogus resize length in nextc | Guido van Rossum | 1995-09-21 | 1 | -1/+1 |
| | |||||
* | ignore control-l in whitespace | Guido van Rossum | 1995-07-07 | 1 | -1/+3 |
| | |||||
* | replace "\r\n" with "\n" at line end (Jim Ahlstrom) | Guido van Rossum | 1995-06-14 | 1 | -0/+8 |
| | |||||
* | fix loop on unterminated triple quotes | Guido van Rossum | 1995-01-17 | 1 | -1/+6 |
| | |||||
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
| | |||||
* | Parser/tokenizer.c (tok_nextc): zap tok->buf after freeing; | Guido van Rossum | 1994-12-30 | 1 | -4/+3 |
| | | | | rest: abort() -> fatal(); small things | ||||
* | * Parser/tokenizer.c (tok_nextc): count line numbers when parsing | Guido van Rossum | 1994-09-19 | 1 | -7/+21 |
| | | | | strings | ||||
* | * Parser/tokenizer.c: backup over illegal newline in string | Guido van Rossum | 1994-08-29 | 1 | -92/+119 |
| | | | | literal (for "completeness" test) | ||||
* | Changes to accept double-quoted strings on input. | Guido van Rossum | 1993-10-26 | 1 | -1/+27 |
| | |||||
* | * selectmodule.c: fix (another!) two memory leaks -- this time in list2set | Guido van Rossum | 1993-05-12 | 1 | -2/+17 |
| | | | | * tokenizer.[ch]: allow continuation without \ inside () [] {}. | ||||
* | * pythonrun.c: Print exception type+arg *after* stack trace instead of | Guido van Rossum | 1993-05-12 | 1 | -41/+55 |
| | | | | | | | before it. * ceval.c, object.c: moved testbool() to object.c (now extern visible) * stringobject.c: fix bugs in and rationalize string resize in formatstring() * tokenizer.[ch]: fix non-working code for lines longer than BUFSIZ | ||||
* | * Changed all copyright messages to include 1993. | Guido van Rossum | 1993-03-29 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | * Stubs for faster implementation of local variables (not yet finished) * Added function name to code object. Print it for code and function objects. THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version number has changed accordingly) * Print address of self for built-in methods * New internal functions getattro and setattro (getattr/setattr with string object arg) * Replaced "dictobject" with more powerful "mappingobject" * New per-type functio tp_hash to implement arbitrary object hashing, and hashobject() to interface to it * Added built-in functions hash(v) and hasattr(v, 'name') * classobject: made some functions static that accidentally weren't; added __hash__ special instance method to implement hash() * Added proper comparison for built-in methods and functions | ||||
* | Copyright for 1992 added | Guido van Rossum | 1992-04-05 | 1 | -1/+1 |
| | |||||
* | Make tabs always 8 spaces wide -- it's more portable. | Guido van Rossum | 1992-02-26 | 1 | -6/+1 |
| | |||||
* | Add warning XXX that 09.9 isn't accepted. | Guido van Rossum | 1991-12-10 | 1 | -0/+2 |
| | |||||
* | Added shift and mask ops. | Guido van Rossum | 1991-10-24 | 1 | -2/+25 |
| | | | | Allow numbers starting with a period. | ||||
* | Added 2-char tokens and new versions of comparisons | Guido van Rossum | 1991-10-20 | 1 | -0/+47 |
| | |||||
* | Completely ignore lines with only a newline token on them, except | Guido van Rossum | 1991-07-27 | 1 | -25/+47 |
| | | | | wholly empty lines interactively. | ||||
* | Generalize to macintosh. | Guido van Rossum | 1991-06-24 | 1 | -1/+1 |
| | |||||
* | Added recognition of 'l' or 'L' as long integer suffix | Guido van Rossum | 1991-05-05 | 1 | -16/+23 |
| | |||||
* | Added copyright notice. | Guido van Rossum | 1991-02-19 | 1 | -0/+24 |
| | |||||
* | Changes for THINK C 4.0. | Guido van Rossum | 1990-12-20 | 1 | -2/+2 |
| | |||||
* | "Compiling" version | Guido van Rossum | 1990-12-20 | 1 | -4/+12 |
| | |||||
* | Increment line number for continuation lines. | Guido van Rossum | 1990-11-09 | 1 | -0/+1 |
| | |||||
* | Initial revision | Guido van Rossum | 1990-10-14 | 1 | -0/+490 |