- 36eef3c Changes by Greg Stein (code) and GvR (design). by Guido van Rossum · 26 years ago
- d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
- 2e19bd7 Add Greg Stein's buffer object API. by Guido van Rossum · 26 years ago
- b7c6131 Up version to 1.5a2 -- we're close enough (even though I'm still by Guido van Rossum · 26 years ago
- 6e5b301 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
- 2c69336 On second though, NEXITFUNCS should be defined in pythonrun.c and not by Guido van Rossum · 26 years ago
- 03dc538 Move the #include of <sys/select> to *after* mytime.h (or <time.h>), by Guido van Rossum · 26 years ago
- 78694d9 Patches from Greg Stein to support 'P' format in struct module's by Guido van Rossum · 26 years ago
- 1d2e9d1 Duplicate the decls for PySys_WriteStd{out,err} here so the VC++ by Guido van Rossum · 26 years ago
- 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
- f1536db Move an indented #define to column 1. by Guido van Rossum · 26 years ago
- 3d109a0 Add missing prototypes for PyEval_CallFunction() and PyEval_CallMethod(). by Guido van Rossum · 26 years ago
- b2395eb Upgrade patchlevel to 1.5.2a1. by Guido van Rossum · 26 years ago
- 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
- 62a21a2 New global variables: PyExc_EnvironmentError and PyExc_OSError by Barry Warsaw · 26 years ago
- ba0d061 Add macros for direct access to the members of CFunction objects. by Guido van Rossum · 26 years ago
- d4ba73c Move the definition of PyMethodObject to classobject.h, so it can define by Guido van Rossum · 26 years ago
- 9223351 Marc-Andre Lemburg's patch to move the typedef for PyCFunctionObject by Guido van Rossum · 26 years ago
- 9d865e1 Get rid of some obsolete opcodes. by Guido van Rossum · 26 years ago
- 16926bd Add PyImport_AppendInittab() an PyImport_ExtendInittab(). by Guido van Rossum · 26 years ago
- a70d160 Define new macro Py_InitModule3(name, methods, doc) which calls by Guido van Rossum · 26 years ago
- 90ce848 On SGI, we need to define _SGI_MP_SOURCE before including errno.h when by Guido van Rossum · 26 years ago
- 44e4d5a Renamed PySequence_In() to PySequence_Contains(). by Guido van Rossum · 26 years ago
- bf6a9b1 Add PySys_WriteStdout(format, ...) PySys_WriteStderr(format, ...) by Guido van Rossum · 26 years ago
- 50cc04e Mac CodeWarrior has faulty declaration for hypot, which we hide with a by Guido van Rossum · 27 years ago
- a937d14 Fred's right -- we need PyList_SET_ITEM(). by Guido van Rossum · 27 years ago
- a9c2d7a Add new spares to the end of the type object struct. by Guido van Rossum · 27 years ago
- ee0a63b Move 'dict' struct member to end of struct. This ensures binary by Guido van Rossum · 27 years ago
- 26d4ac3 Add prototypes for Py_Repr{Enter,Leave}. by Guido van Rossum · 27 years ago
- 204751b Add dict struct member and PyThreadState_GetDict() prototype. by Guido van Rossum · 27 years ago
- c9ea757 Set the patch level to 1.5.1. (I'm not going to release this as a by Guido van Rossum · 27 years ago
- 4d856ee Added Tabcheck flag. by Guido van Rossum · 27 years ago
- e77a992 Add E_INDENT -- new error to check for bad indentation by Guido van Rossum · 27 years ago
- c3d3f96 Add PyObject_Not(). by Guido van Rossum · 27 years ago
- f1dc061 Add internal routine _PyModule_Clear(), which does approximately what by Guido van Rossum · 27 years ago
- fccb68e Added PyImport_ExecCodeModuleEx(), which adds an extra parameter to pass by Guido van Rossum · 27 years ago
- 66d4b90 - Add Py_GetPythonHome() and Py_SetPythonHome(), intended to allow by Guido van Rossum · 27 years ago
- 95c745b - Add Py_FrozenFlag, intended to suppress error messages fron by Guido van Rossum · 27 years ago
- d8a0be7 Set the patch level to 1.5. by Guido van Rossum · 27 years ago
- d555957 Start calling it 1.5b2 by Guido van Rossum · 27 years ago
- cd8732a Remove the last bits of log from the leading comments. by Guido van Rossum · 27 years ago
- 60aff2c Use the proper OS2 test symbol: PYOS_OS2. by Guido van Rossum · 27 years ago
- 36facb0 Merge between my version and Jim Fulton's version; removed RCS keywords by Guido van Rossum · 27 years ago
- 7bf22de Patch for QNX, by Chris Herborth. by Guido van Rossum · 27 years ago
- 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
- ee6fd1c Add declaration for _Py_PackageContext -- needed to fix importing by Guido van Rossum · 27 years ago
- 127b8dd Add declaration for PyNumber_CoerceEx(). by Guido van Rossum · 27 years ago
- 33635f8 start numbering things 1.5b1 now 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
- 66959af Remove the declaration of "internal" table _PyImport_Inittab[]; add by Guido van Rossum · 27 years ago
- 1f84449 New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() and by Guido van Rossum · 27 years ago
- e85da65 Some patches to Lee Busby's fpectl mods that accidentally didn't make it by Guido van Rossum · 27 years ago
- eec6ef1 Use K&R function prototypes. by Guido van Rossum · 27 years ago
- b4cfdfa Removed special Windows defines, at Mark Hammond's request. by Guido van Rossum · 27 years ago
- 2d2c344 New API PyErr_NewException(name, base, dict) to create simple new exceptions. by Guido van Rossum · 27 years ago
- 65349a3 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
- 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
- 7ca65ab Set it to 1.5a4, now we have dotted-name import... by Guido van Rossum · 27 years ago
- 114c1ea #Added prototype for PyObject_HasAttr() -- must've been an oversight. by Guido van Rossum · 27 years ago
- 49bb0e3 Fix in trailing comment: PyDict_SetItemString() does *not* consume a reference by Fred Drake · 27 years ago
- 026de19 Added PyImport_ImportModuleEx(name, globals, locals, fromlist); this by Guido van Rossum · 27 years ago
- d7ed683 Inline PyObject_CallObject (Marc-Andre Lemburg). by Guido van Rossum · 27 years ago
- 3d90af9 Added NoSite flag. by Guido van Rossum · 27 years ago
- d5a0ff9 Added extern definition for -X flag variable. by Barry Warsaw · 27 years ago
- 0596c2a Declarations for two phase initialization and finalization functions by Barry Warsaw · 27 years ago
- 392d827 Added externs for three new exceptions PyExc_StandardError, by Barry Warsaw · 27 years ago
- c0dc92a Three new C API functions: by Barry Warsaw · 27 years ago
- e3c0d5e Added new Py_IsInitalized() API function to test the 'initialized' flag. by Guido van Rossum · 27 years ago
- ab589b9 Completely disable the declarations for malloc() and friends. Use by Guido van Rossum · 27 years ago
- ef3138f Moved assert.h to ../Parser directory by Guido van Rossum · 27 years ago
- 9faabb8 Added prototype for PyImport_Import(). by Guido van Rossum · 27 years ago
- 142eeb8 cPickle release 0.3 from Jim Fulton by Guido van Rossum · 27 years ago
- 3fb1aea Added decls for stuff from myreadline. by Guido van Rossum · 27 years ago
- 8e5e446 Added prototype for various finalizers. by Guido van Rossum · 27 years ago
- bb301c5 Added prototype for PyGrammar_RemoveAccelerators(). by Guido van Rossum · 27 years ago
- 15974ad Bump MS_DLL_ID to 1.5.0. by Guido van Rossum · 27 years ago
- 1d529d1 Add a cast to the call to _Py_Dealloc in the expanded version of by Guido van Rossum · 27 years ago
- d085e88 Added Py_Malloc and friends as well as PyMem_Malloc and friends. by Guido van Rossum · 27 years ago
- 29e46a9 Mass checkin (more to follow for other directories). by Guido van Rossum · 27 years ago
- 7a2d611 Add cast to PyInt_AS_LONG macro, as suggested by Marc Lemburg. by Guido van Rossum · 27 years ago
- 2981bc7 Add cast to PyFloat_AS_DOUBLE macro, as suggested by Marc Lemburg. by Guido van Rossum · 27 years ago
- 7661185 Changed the patch level to 1.5a3, to avoid confusion with a2 (I'm not by Guido van Rossum · 27 years ago
- 57d8e3f Added declarations for Py_{Set,Get}ProgramName() and a bunch of other by Guido van Rossum · 27 years ago
- 5617f32 Added decl for PyInt_GetMax(). by Guido van Rossum · 27 years ago
- a847889 Moved PyEval_InitThreads to inside WITH_THREAD, where it belongs. by Guido van Rossum · 27 years ago
- e6fb204 Got rid of "suppres printing" flag. by Guido van Rossum · 27 years ago
- 618af4b Include pystate.h earlier so it can be referenced by ceval.h. by Guido van Rossum · 27 years ago
- 2fca21f7 PyEval_SaveThread() and PyEval_RestoreThread() now return/take a by Guido van Rossum · 27 years ago
- 4b11c74 Only add 1 byte to all malloc calls when it is known that malloc(0) or by Guido van Rossum · 27 years ago
- 745b8cf flushline and writestring can now return an error by Guido van Rossum · 27 years ago
- 59943ba Added Py_PROTO macros for SunOS 4.x /bin/cc. by Guido van Rossum · 27 years ago
- c23ef0a Workaround for bug in Metrowerks MSL headers on 68K Macs (Jack) by Guido van Rossum · 27 years ago
- d0c87ee Oops, another forgotten renaming: varobject -> PyVarObject. by Guido van Rossum · 27 years ago
- 4346716 Bump level to 1.5a2. by Guido van Rossum · 27 years ago
- 2ec9031 Subsumed mappingobject.h in dictobject.h. by Guido van Rossum · 27 years ago
- 6a33de9 Get rid of obsolete ACCESS_MODE opcode. by Guido van Rossum · 28 years ago
- 6778f25 Oops, rename2.h was included by some other headers. by Guido van Rossum · 28 years ago
- b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 28 years ago
- fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 28 years ago
- a027efa Massive changes for separate thread state management. by Guido van Rossum · 28 years ago