- 6947d0b -- from Trent Mick: [Patch #101010] replace use of INT_PTR by Fredrik Lundh · 24 years ago
- 6c2f0c7 When returning an error from jcompile() (which is passed through by by Guido van Rossum · 24 years ago
- ed473a4 Avoid dumping core when PyErr_NormalizeException() is called without by Guido van Rossum · 24 years ago
- aa39a7e Initialized opcode and oparg to silence a gcc -Wall warning. by Moshe Zadka · 24 years ago
- e8643c4 Fix some strange indentation and grammar that have been bugging me for weeks. by Thomas Wouters · 24 years ago
- cc22fbe Changed H specifier to mean "bitfield", i.e. any value from by Jack Jansen · 24 years ago
- 9fb6af9 Removing warnings by gcc -Wall -- cast ugly || to void. by Moshe Zadka · 24 years ago
- 413407f Add a test that Py_IsInitialized() in Py_InitModule4(). See by Guido van Rossum · 24 years ago
- bff879c This patch finalizes the move from UTF-8 to a default encoding in by Marc-André Lemburg · 24 years ago
- 16b1ad9 Changing the CNRI copyright notice according to CNRI's instructions. by Guido van Rossum · 24 years ago
- bd599b5 Both PEP 201 Lockstep Iteration and SF patch #101030 have been by Barry Warsaw · 24 years ago
- 19c6afb Include the dependence of sysmodule on the patchlevel.h include, so by Fred Drake · 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
- 1e0c2f4 Create a new section of pyport.h to hold all external function declarations by Thomas Wouters · 24 years ago
- 8ec68fd Prototype yet another forward declaration. by Thomas Wouters · 24 years ago
- e28c296 Another missed ansification. by Thomas Wouters · 24 years ago
- 8315ea5 Included assert.h in Python.h -- it's absurd that this basic tool of by Tim Peters · 24 years ago
- 1153438 -- changed w_more to take an integer instead of a char by Fredrik Lundh · 24 years ago
- 2f2370b Oops. One of last nights ANSIfication patches accidentily upped the bytecode by Thomas Wouters · 24 years ago
- b4bd21c ANSIfy as many declarations as possible. by Thomas Wouters · 24 years ago
- f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
- 0452d1f Fix two instances of empty argument lists, and fix style 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
- 9a5086c just fixing the indentation by Peter Schneider-Kamp · 24 years ago
- 11384c6 raise error on duplicate function arguments by Peter Schneider-Kamp · 24 years ago
- 6980dff delete obsolete SYMANTEC__CFM68K__ #ifdefs by Skip Montanaro · 24 years ago
- 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
- bf26e07 Worm around MSVC6 error on single string literal > 2Kb. by Tim Peters · 24 years ago
- cbf630f Include macglue.h for some function prototypes, and renamed a few by Jack Jansen · 24 years ago
- 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
- b781655 Exception__str__(): In case 1, be sure to decref the tmp local by Barry Warsaw · 24 years ago
- 7dfeb42 EnvironmentError__init__(): The two case clauses were missing by Barry Warsaw · 24 years ago
- dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
- 4be47c0 Get rid of unused vars in builtin_unicode (they were causing legit warnings). by Tim Peters · 24 years ago
- 1b1bcc9 Fixed unicode() to use the new API PyUnicode_FromEncodedObject(). by Marc-André Lemburg · 24 years ago
- d50338f Added support for H (unsigned short) specifier in PyArg_ParseTuple and by Jack Jansen · 24 years ago
- 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
- 8fcaa92 init_exceptions(): Decref `doc' so it doesn't leak. by Barry Warsaw · 24 years ago
- db67739 Jack Jansen, Mac patch: by Guido van Rossum · 24 years ago
- f12d7a0 Jack Jansen, Mac patch: by Guido van Rossum · 24 years ago
- 63e97ad Jack Jansen, Mac patch: by Guido van Rossum · 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
- 615ae55 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
- 4c82b23 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
- a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
- 4e542a3 replace constant 1 with symbolic constant METH_VARARGS by Jeremy Hylton · 24 years ago
- 9262b8a another typo caught by Rob Hooft by Jeremy Hylton · 24 years ago
- 34a9637 - workaround to make 1.6 build under MSVC 5.0. hopefully, by Fredrik Lundh · 24 years ago
- 3383113 Change the loop index in normalizestring() to size_t too, to avoid a by Guido van Rossum · 24 years ago
- 5e08cb8 Vladimir Marangozov: by Guido van Rossum · 24 years ago
- 98626cd Urmpf. Quality control on this patch lapsed a bit. :-( by Guido van Rossum · 24 years ago
- 582acec Trent Mick's Win64 changes: size_t vs. int or long; also some overflow tests. by Guido van Rossum · 24 years ago
- 106f2da Trent Mick: by Guido van Rossum · 24 years ago
- 6da0b91 Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
- 9498806 Add new parser error code, E_OVERFLOW. This error is returned when by Jeremy Hylton · 24 years ago
- 2d15d9d mark SyntaxError__str__ as METH_VARARGS by Jeremy Hylton · 24 years ago
- 440d898 Added a new debug method sys.gettotalrefcount(), which returns the total number of references on all Python objects. This is only enabled when Py_TRACE_REFS is defined (which includes default debug builds under Windows). by Mark Hammond · 24 years ago
- 5550de3 Christopher Fandrich <cfandrich@8cs.com>: by Fred Drake · 24 years ago
- 99964b8 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
- 675ac28 The standard exception classes. Moved here from ../Modules/_exceptions.c by Barry Warsaw · 24 years ago
- f17861b Added exceptions.o to the list of object to build in this subdir. by Barry Warsaw · 24 years ago
- 78e6c67 All the exception building related stuff has been moved out of this by Barry Warsaw · 25 years ago
- f242aa0 Py_Initialize(): Now that standard exceptions are builtin, we don't by Barry Warsaw · 25 years ago
- 1226588 bltin_exc: Removed the leaf_exc flag in the structure, which was only by Barry Warsaw · 25 years ago
- ede8c6e Bill Tutt: by Guido van Rossum · 25 years ago
- cf3ba65 At Bob Kahn's request, add CNRI to the copyright string (but not to by Guido van Rossum · 25 years ago
- 230cae7 Trent Mick <trentm@activestate.com>: by Fred Drake · 25 years ago
- 8b4d01d M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 25 years ago
- 766de83 M.-A. Lemburg <mal@lemburg.com>: Moved some docs to the include file. by Fred Drake · 25 years ago
- c640b18 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 25 years ago
- 20c6add Trent Mick: by Guido van Rossum · 25 years ago
- 80dc16b Trent Mick: by Guido van Rossum · 25 years ago
- 07bd90e Andy Dustman: add GNU pth user-space thread support. by Guido van Rossum · 25 years ago
- 4cea605 Quick fix by Mark Hammond -- Yakov changed a dprintf call but it was by Guido van Rossum · 25 years ago
- 706262b Fast NonRecursiveMutex support by Yakov Markovitch, markovitch@iso.ru, by Guido van Rossum · 25 years ago
- cc229ea Add useless 'return 1' to prtrace() to shut up VC++. by Guido van Rossum · 25 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- a7cfca2 A bit of cleanup: by Guido van Rossum · 25 years ago
- 25871c0 Brian Hooper <brian_takashi@hotmail.com>: by Fred Drake · 25 years ago
- fa5c315 PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL and by Barry Warsaw · 25 years ago
- 48719d3 _PyBuiltin_Init_2(): Remove the misleading comment. by Barry Warsaw · 25 years ago
- 47eeb9b initerrors(): Remove this function. String-based standard exceptions by Barry Warsaw · 25 years ago
- 3ce0964 Py_UseClassExceptionsFlag is deprecated. We keep the C variable for C by Barry Warsaw · 25 years ago
- ee98e4e Ignore a bunch of generated files. by Barry Warsaw · 25 years ago
- 96774c1 Marc-Andre Lemburg: by Guido van Rossum · 25 years ago
- b16d197 Marc-Andre Lemburg: by Guido van Rossum · 25 years ago
- fdc8bdb Marc-Andre Lemburg: by Guido van Rossum · 25 years ago
- 22b65a8 Robin Becker: The following patch seems to fix a module case bug in by Guido van Rossum · 25 years ago
- 1cb6cd0 As Marc-Andre Lemburg points out, the magic number needs to change by Guido van Rossum · 25 years ago
- a2ace6a Charles G Waldman: by Guido van Rossum · 25 years ago
- 25d3447 Brian Hooper <brian_takashi@hotmail.com>: by Fred Drake · 25 years ago
- eca4784 Mark Hammond: For Windows debug builds, we now only offer to dump by Guido van Rossum · 25 years ago
- 700c6ff Marc-Andre Lemburg: by Guido van Rossum · 25 years ago
- b33aa1a Jack Jansen: The new version of the GUSI i/o library on the Macintosh by Guido van Rossum · 25 years ago
- 095249f Jack Jansen: Posix threads are now supported on the Macintosh too. by Guido van Rossum · 25 years ago
- 25826c9 Charles Waldman writes: by Guido van Rossum · 25 years ago
- 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 25 years ago
- 6d27c1e Simplify creation of the version_info value for clarity, per by Fred Drake · 25 years ago