- 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
- 3c03323 Fis SF bug #442647: not all forms of legal future statements were by Guido van Rossum · 23 years ago
- da62ecc Add a really stupid warning about 'yield' used as an identifier. by Guido van Rossum · 23 years ago
- fe2127d Ugly. A pile of new xxxFlags() functions, to communicate to the parser by Tim Peters · 23 years ago
- b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 23 years ago
- cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 24 years ago
- 48a680c RISCOS changes by dschwertberger. by Guido van Rossum · 24 years ago
- 84521c0 Take output filenames as arguments instead of hard-coding them. by Neil Schemenauer · 24 years ago
- 693291b Superseded by $(srcdir)/Makefile.pre.in. by Neil Schemenauer · 24 years ago
- e3c3b27 Fix a bug in stack overflow error handling. This fixes half of Bug #115555. by Guido van Rossum · 24 years ago
- 1d6a729 More limits.h stuff in node.c. Fred, check this! by Tim Peters · 24 years ago
- d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
- 58e64a8 Move down the INT_MAX logic, because HAVE_LIMITS_H was always undefined by Vladimir Marangozov · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- dd19eaf Added a little more dependency information. by Fred Drake · 24 years ago
- fee3a2d Charles Waldman's patch to reinitialize the interpreter lock after a by Guido van Rossum · 24 years ago
- 434d082 Support for three-token characters (**=, >>=, <<=) which was written by by Thomas Wouters · 24 years ago
- ef8ace3 Charles G. Waldman <cgw@fnal.gov>: by Fred Drake · 24 years ago
- eb375e4 Simplified inclusions and avoid prototypes copied in from elsewhere. by Fred Drake · 24 years ago
- 38aa14a PyParser_ParseString(): When the err_ret structure is initialized, the by Barry Warsaw · 24 years ago
- 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
- 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
- 4f1b208 Removed all instances of RETSIGTYPE from the source code: signal by Tim Peters · 24 years ago
- 1be4684 Recent ANSIfication introduced a couple instances of by Tim Peters · 24 years ago
- bd8ad94 Remember to return something if RETSIGTYPE is not 'void'. Do we still need by Thomas Wouters · 24 years ago
- 23c9e00 Mass ANSIfication. by Thomas Wouters · 24 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 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
- 41aa8e5 Include limits.h if we have it. by Jack Jansen · 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
- 6b7a5d8 Jack Jansen: Removed Macintosh tab-guessing code by Guido van Rossum · 24 years ago
- 9498806 Add new parser error code, E_OVERFLOW. This error is returned when by Jeremy Hylton · 24 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- ee98e4e Ignore a bunch of generated files. by Barry Warsaw · 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
- 89ce454 Make sure that -t and -tt also work on strings passed to compile(). by Guido van Rossum · 26 years ago
- d5516bc One more fprintf bites the dist -- use PySys_WriteStderr by Guido van Rossum · 26 years ago
- f261526 Need to add default decl of DL_IMPORT, for mymalloc.h by Guido van Rossum · 26 years ago
- 2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. by Guido van Rossum · 26 years ago
- 80c7bcf The previous fix was still broken; the Py_END_ALLOW_THREADS macro was by Guido van Rossum · 26 years ago
- 8efa47b We now assume that PyOS_Readline() is called with the interpreter lock by Guido van Rossum · 26 years ago
- 6e73bf4 Replace all calls to fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
- 47fbc40 Add a version of PySys_WriteStderr() that writes to stderr, so we can by Guido van Rossum · 26 years ago
- c3e3e64 There's a bunch of files that shouldn't be included in libpython*.a! by Guido van Rossum · 26 years ago
- bb3649e Make new gcc -Wall happy by Guido van Rossum · 27 years ago
- 6135df6 Declare and use Py_TabcheckFlag here. by Guido van Rossum · 27 years ago
- c095200 Add dummy Py_VerboseFlag now that it's referenced in parsetok.c. by Guido van Rossum · 27 years ago
- 926f13a Add checking for inconsistent tab usage by Guido van Rossum · 27 years ago
- f2da4ed Add $(LIBS) to the pgen link line. 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
- 7bf22de Patch for QNX, by Chris Herborth. by Guido van Rossum · 27 years ago
- 359bcaa This fix (across 4 files in 3 directories) solves a subtle problem with by Guido van Rossum · 27 years ago
- 4462064 Renamed Py_input_hook to PyOS_InputHook. by Guido van Rossum · 27 years ago
- 717c6f9 Move GNU readline interface to ../Modules/readline.c. by Guido van Rossum · 27 years ago
- aee094c Added finalization routines. by Guido van Rossum · 27 years ago
- ff0ec52 Finally plug the memory leak caused by syntax error (including by Guido van Rossum · 27 years ago
- f6ca6aa New build procedure. by Guido van Rossum · 27 years ago
- ee2373b Oops, missed some renamings. by Guido van Rossum · 28 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
- fa658ce Remove two unised variables. 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
- 6dacd90 Allow leading underscore in keywords. by Guido van Rossum · 28 years ago
- fbd64c8 Restructured quite a bit, hopefully Lee Busby will find this useful. by Guido van Rossum · 28 years ago
- bae9518 Added decl for Py_AddPendingCall and include mymalloc.h, all to keep lint happy. by Guido van Rossum · 28 years ago
- ad74fa6 In the Unix version, arrange for sigcheck() to be called via 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
- 0bc253d Explicitly call rl_initialize(). by Guido van Rossum · 28 years ago
- 7cf1fcf Always include config.h by Guido van Rossum · 28 years ago
- 9ea917e Only define PyOS_ReadlineInit if WITH_READLINE defined. by Guido van Rossum · 28 years ago
- adf8769 Separate readline initialization into new function PyOS_ReadlineInit(). by Guido van Rossum · 29 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
- c7fea2f add sigrelse() call for SunOS 4.1; add some fflush() calls 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
- 575d561 added PyErr_SetInterrupt() by Guido van Rossum · 30 years ago
- d09b41b remove last bits of mac specific code by Guido van Rossum · 30 years ago
- 9fc3989 Mac interrupt code moved to macglue.c by Jack Jansen · 30 years ago
- 51f4b8d New cmd-. handling for the mac. by Jack Jansen · 30 years ago
- ec49827 fix strncpy call (uninitialized memory read) by Guido van Rossum · 30 years ago
- badadd2 typo by Guido van Rossum · 30 years ago
- febf811 Added mac-only intrpeek routine that peeks for command-. by Jack Jansen · 30 years ago
- 78c0535 fix loop on unterminated triple quotes by Guido van Rossum · 30 years ago
- 62e376b made interrupted static again by Guido van Rossum · 30 years ago
- 087579e added $& to $(LIB) target for Sequent by Guido van Rossum · 30 years ago
- b9f8d6e Added 1995 to copyright message. by Guido van Rossum · 30 years ago
- 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago