Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rename printrefs, getobjects to _Py_ prefix | Guido van Rossum | 1996-05-24 | 3 | -5/+7 |
| | |||||
* | make some things static | Guido van Rossum | 1996-05-24 | 2 | -6/+6 |
| | |||||
* | Only define PyOS_ReadlineInit if WITH_READLINE defined. | Guido van Rossum | 1996-05-24 | 1 | -0/+2 |
| | |||||
* | rename parser internal symbols with _Py_ prefix | Guido van Rossum | 1996-05-24 | 1 | -0/+22 |
| | |||||
* | don't use NDEBUG | Guido van Rossum | 1996-05-24 | 2 | -7/+3 |
| | |||||
* | X11 install.sh script | Guido van Rossum | 1996-05-24 | 1 | -0/+119 |
| | |||||
* | Removed most of the README text since it is all about the Mac specific | Guido van Rossum | 1996-05-24 | 1 | -161/+5 |
| | | | | examples, which no longer live here. | ||||
* | Fix typos (need to use tag_bind, not bind). | Guido van Rossum | 1996-05-24 | 1 | -3/+2 |
| | |||||
* | Added mkfifo, ftruncate. Windows/PC changes. | Guido van Rossum | 1996-05-23 | 1 | -31/+214 |
| | |||||
* | Be more careful about default args. | Guido van Rossum | 1996-05-23 | 1 | -16/+25 |
| | |||||
* | Use struct _inittab def from import.h | Guido van Rossum | 1996-05-23 | 1 | -4/+1 |
| | |||||
* | Added flock(). | Guido van Rossum | 1996-05-23 | 1 | -0/+29 |
| | |||||
* | Microsoft C changes | Guido van Rossum | 1996-05-23 | 1 | -1/+4 |
| | |||||
* | Subtle Windows changes | Guido van Rossum | 1996-05-23 | 1 | -2/+2 |
| | |||||
* | Use sigaction if possible | Guido van Rossum | 1996-05-23 | 1 | -0/+6 |
| | |||||
* | Windows/PC changes | Guido van Rossum | 1996-05-23 | 1 | -7/+40 |
| | |||||
* | Added __doc__ strings. Added get_soundex(). | Guido van Rossum | 1996-05-23 | 1 | -2/+36 |
| | |||||
* | Watcom changes. | Guido van Rossum | 1996-05-23 | 1 | -1/+18 |
| | | | | | Add mktime() overflow test and make it NeXT robust by initializing the structure from localtime(). | ||||
* | removed verbose decl; added win3.1 dynamic linking. | Guido van Rossum | 1996-05-23 | 1 | -3/+19 |
| | |||||
* | moved verbose decl to pydebug.h; added dos_8x3 feature | Guido van Rossum | 1996-05-23 | 1 | -2/+18 |
| | |||||
* | Added copyright. | Guido van Rossum | 1996-05-23 | 1 | -1/+31 |
| | | | | Include config.h which may define COMPILER. | ||||
* | removed sime redundant header includes and decls. | Guido van Rossum | 1996-05-23 | 1 | -8/+0 |
| | |||||
* | Removed some redundant header includes. | Guido van Rossum | 1996-05-23 | 1 | -5/+5 |
| | | | | | dir(object) now returns object.__dict__.keys() even if __dict__ is not a dictionary. | ||||
* | new debugger symbol names | Guido van Rossum | 1996-05-23 | 3 | -8/+8 |
| | |||||
* | TRACE_REFS -> Py_TRACE_REFS | Guido van Rossum | 1996-05-23 | 1 | -2/+2 |
| | |||||
* | Added PySys_SetPath. | Guido van Rossum | 1996-05-22 | 1 | -0/+1 |
| | |||||
* | Don't declare Py_FatalError. | Guido van Rossum | 1996-05-22 | 1 | -1/+2 |
| | | | | Add Py_mport_Init and PyBuiltin_Init. | ||||
* | Define DL_IMPORT if necessary. | Guido van Rossum | 1996-05-22 | 1 | -1/+6 |
| | | | | Include pydebug.h instead of declaring Py_FatalError. | ||||
* | Added __WATCOMC__ as DOS compiler. | Guido van Rossum | 1996-05-22 | 1 | -1/+1 |
| | |||||
* | Added decl for PyImport_Init. | Guido van Rossum | 1996-05-22 | 1 | -2/+6 |
| | | | | Changed decl for inittab to define struct _inittab first. | ||||
* | Used new names for PyBuiltin_GetDict, PyBuiltin_GetModule. | Guido van Rossum | 1996-05-22 | 1 | -2/+3 |
| | | | | Added PyBuiltin_Init. | ||||
* | Added PyFile_decls for PyFile_WriteObject, PyFile_SoftSpace, | Guido van Rossum | 1996-05-22 | 1 | -0/+3 |
| | | | | PyFile_WriteString. | ||||
* | Debug related variable/function definitions go here. | Guido van Rossum | 1996-05-22 | 1 | -0/+40 |
| | |||||
* | Non-trivial DL_IMPORT must now be defined in config.h. | Guido van Rossum | 1996-05-22 | 1 | -17/+16 |
| | | | | | Include <stdlib.h>. Include several more Python header files, including new pydebug.h. | ||||
* | Use new names for debug macros. Don't include pythonrun.h. | Guido van Rossum | 1996-05-22 | 1 | -6/+5 |
| | |||||
* | TRACE_REFS -> Py_TRACE_REFS. | Guido van Rossum | 1996-05-22 | 1 | -1/+5 |
| | | | | Added disgusting hack to force loading of abstract.o. | ||||
* | Added some visual enhancements of debugging ifdefs. | Guido van Rossum | 1996-05-22 | 1 | -5/+11 |
| | | | | Added PyNumber_Coerce decl. | ||||
* | Removed TRACE_REFS and REF_DEBUG b/w compat hacks -- they don't work. | Guido van Rossum | 1996-05-22 | 1 | -8/+2 |
| | | | | Added defs for getbuiltindict, getbuiltinmod (bltinmodule.c). | ||||
* | Plug memory leak in the previous fix :-( | Guido van Rossum | 1996-05-21 | 1 | -1/+0 |
| | |||||
* | Fix obscure bug in string%mapping where the mapping creates its items | Guido van Rossum | 1996-05-21 | 1 | -21/+12 |
| | | | | | on the fly -- there was an unsafe DECREF. Actually save some lines of code by using abstract.c:PyObject_GetItem(). | ||||
* | more changes copied from Grail | Guido van Rossum | 1996-05-21 | 2 | -60/+98 |
| | |||||
* | Modified for 1.3.3 distribution | Jack Jansen | 1996-05-20 | 1 | -17/+10 |
| | |||||
* | Added splash method (to quickly display splash screen without first | Jack Jansen | 1996-05-20 | 1 | -0/+20 |
| | | | | having to load a zillion extension modules) | ||||
* | Added waste | Jack Jansen | 1996-05-20 | 1 | -0/+6 |
| | |||||
* | Fixed callback handling on 68K machines. | Jack Jansen | 1996-05-20 | 2 | -16/+22 |
| | |||||
* | re-binhexed for 1.3.3 distribution | Jack Jansen | 1996-05-20 | 6 | -237/+239 |
| | |||||
* | Added waste and _tkinter modules | Jack Jansen | 1996-05-20 | 1 | -0/+2 |
| | |||||
* | Recreated tkpython.rsrc, upped version number | Jack Jansen | 1996-05-20 | 4 | -3486/+3567 |
| | |||||
* | Added USE_WASTE define | Jack Jansen | 1996-05-20 | 1 | -0/+1 |
| | |||||
* | Fixed up for 1.3.3 distribution, removed various old (and nuused) | Jack Jansen | 1996-05-20 | 19 | -8984/+5114 |
| | | | | project files. |