4890 Commits (00a0fc1144d928515ff8abd0de7bb6ad072fcbdb)

Author SHA1 Message Date
Barry Warsaw 77c9f50422 SyntaxError__str__(): Fix two memory problems discovered by Insure. 26 years ago
Tim Peters b59ab42487 Fix new compiler warnings. Unused var in compile.c. Argsize mismatches 26 years ago
Fred Drake 185a29b08f my_basename(): Removes the leading path components from a path name, 26 years ago
Fred Drake a811a5b13a Remove the osdefs.h #include; it was not needed in the final version of 26 years ago
Fred Drake dcf08e0dfe When raising a SyntaxError, make a best-effort attempt to set the 26 years ago
Fred Drake 83cb797380 When raising a SyntaxError, make a best-effort attempt to set the 26 years ago
Fred Drake 1aba577093 SyntaxError__str__(): Do more formatting of the exception here, rather 26 years ago
Fred Drake a2b6ad6e27 Guido pointed out that all names in the sys module have no underscore, 26 years ago
Mark Hammond 557a044f74 Fix the parent of WindowsError - both the comments in this source file, and the previous exceptions.py have WindowsError as a sub-class of OSError. 26 years ago
Fred Drake ccede59889 The attempt to protect against MS_WIN16 compilers that do not support long 26 years ago
Fred Drake 099325e01b Add a byte_order value to the sys module. The value is "big" for 26 years ago
Thomas Wouters 87df80d542 The list comp patch checked for the second child node of the 'listmaker' 26 years ago
Thomas Wouters 361852f80e The list comprehensions patch partly reversed the removal of UNPACK_LIST, 26 years ago
Trent Mick 29b83810bd Clean up a couple of warnings on Win64. The downcast of the strlen size_t 26 years ago
Skip Montanaro 803d6e5451 list comprehensions. see 26 years ago
Thomas Wouters 0be5aab04d Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they 26 years ago
Fredrik Lundh 6947d0b65e -- from Trent Mick: [Patch #101010] replace use of INT_PTR 26 years ago
Guido van Rossum 6c2f0c73a1 When returning an error from jcompile() (which is passed through by 26 years ago
Guido van Rossum ed473a46fc Avoid dumping core when PyErr_NormalizeException() is called without 26 years ago
Moshe Zadka aa39a7edf7 Initialized opcode and oparg to silence a gcc -Wall warning. 26 years ago
Thomas Wouters e8643c465d Fix some strange indentation and grammar that have been bugging me for 26 years ago
Jack Jansen cc22fbe3db Changed H specifier to mean "bitfield", i.e. any value from 26 years ago
Moshe Zadka 9fb6af9640 Removing warnings by gcc -Wall -- cast ugly || to void. 26 years ago
Guido van Rossum 413407f103 Add a test that Py_IsInitialized() in Py_InitModule4(). See 26 years ago
Marc-André Lemburg bff879cabb This patch finalizes the move from UTF-8 to a default encoding in 26 years ago
Guido van Rossum 16b1ad9c7d Changing the CNRI copyright notice according to CNRI's instructions. 26 years ago
Barry Warsaw bd599b5928 Both PEP 201 Lockstep Iteration and SF patch #101030 have been 26 years ago
Fred Drake 19c6afb42b Include the dependence of sysmodule on the patchlevel.h include, so 26 years ago
Peter Schneider-Kamp 7e01890986 merge Include/my*.h into Include/pyport.h 26 years ago
Thomas Wouters 334fb8985b Use 'void' directly instead of the ANY #define, now that all code is ANSI C. 26 years ago
Thomas Wouters 1e0c2f4bee Create a new section of pyport.h to hold all external function declarations 26 years ago
Thomas Wouters 8ec68fded2 Prototype yet another forward declaration. 26 years ago
Thomas Wouters e28c296f0f Another missed ansification. 26 years ago
Tim Peters 8315ea5790 Included assert.h in Python.h -- it's absurd that this basic tool of 26 years ago
Fredrik Lundh 115343849c -- changed w_more to take an integer instead of a char 26 years ago
Thomas Wouters 2f2370bfc9 Oops. One of last nights ANSIfication patches accidentily upped the bytecode 26 years ago
Thomas Wouters b4bd21cf79 ANSIfy as many declarations as possible. 26 years ago
Thomas Wouters f70ef4f860 Mass ANSIfication of function definitions. Doesn't cover all 'extern' 26 years ago
Thomas Wouters 0452d1f316 Fix two instances of empty argument lists, and fix style 26 years ago
Thomas Wouters 7e47402264 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 26 years ago
Peter Schneider-Kamp 9a5086c598 just fixing the indentation 26 years ago
Peter Schneider-Kamp 11384c60f6 raise error on duplicate function arguments 26 years ago
Skip Montanaro 6980dff3db delete obsolete SYMANTEC__CFM68K__ #ifdefs 26 years ago
Jeremy Hylton 03657cfdb0 replace PyXXX_Length calls with PyXXX_Size calls 26 years ago
Tim Peters bf26e07049 Worm around MSVC6 error on single string literal > 2Kb. 26 years ago
Jack Jansen cbf630f0a9 Include macglue.h for some function prototypes, and renamed a few 26 years ago
Fred Drake 85f363990c Create two new exceptions: IndentationError and TabError. These are 26 years ago
Barry Warsaw b78165566e Exception__str__(): In case 1, be sure to decref the tmp local 26 years ago
Barry Warsaw 7dfeb42939 EnvironmentError__init__(): The two case clauses were missing 26 years ago
Tim Peters dbd9ba6a6c Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. 26 years ago