| Commit message (Expand) | Author | Age | Files | Lines |
* | Move GNU readline interface to ../Modules/readline.c. | Guido van Rossum | 1997-08-05 | 1 | -78/+3 |
|
|
* | New mechanism for GNU readline interface, via module | Guido van Rossum | 1997-08-05 | 3 | -9/+135 |
|
|
* | Add test for function comparisons | Guido van Rossum | 1997-08-05 | 2 | -0/+36 |
|
|
* | Fix bug in comparing function objects detected by Sjoerd: | Guido van Rossum | 1997-08-05 | 1 | -3/+9 |
|
|
* | Get READABLE c.s. from _tkinter instead of conditional definition. | Guido van Rossum | 1997-08-05 | 2 | -24/+12 |
|
|
* | Add a cast to the call to _Py_Dealloc in the expanded version of | Guido van Rossum | 1997-08-05 | 1 | -2/+2 |
|
|
* | Add pointer to new BSDDB module. | Guido van Rossum | 1997-08-05 | 1 | -0/+3 |
|
|
* | purported linux portability patch (Oliver Andrich) | Guido van Rossum | 1997-08-05 | 1 | -0/+4 |
|
|
* | Py_Cleanup() is now Py_Finalize(). | Guido van Rossum | 1997-08-05 | 1 | -1/+1 |
|
|
* | Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini() | Guido van Rossum | 1997-08-05 | 1 | -36/+43 |
|
|
* | New rules for deleting modules. Rather than having an elaborate | Guido van Rossum | 1997-08-05 | 1 | -1/+29 |
|
|
* | Renamed a local label that was accidentally grandly renamed to | Guido van Rossum | 1997-08-05 | 1 | -3/+3 |
|
|
* | Added _Fini() routines to free up some memory | Guido van Rossum | 1997-08-05 | 3 | -1/+47 |
|
|
* | Change the Fini function to only remove otherwise unreferenced strings | Guido van Rossum | 1997-08-05 | 1 | -6/+16 |
|
|
* | Added separate free list for cfunction (builtin method) objects, for a | Guido van Rossum | 1997-08-05 | 1 | -7/+30 |
|
|
* | Provide a dummy empty directory as f_builtins instead of failing, when | Guido van Rossum | 1997-08-05 | 1 | -7/+22 |
|
|
* | Added separate free list for instance method objects, for a few | Guido van Rossum | 1997-08-05 | 1 | -4/+28 |
|
|
* | Added _Py_ResetReferences(), if tracing references. | Guido van Rossum | 1997-08-05 | 1 | -3/+84 |
|
|
* | Added Py_Malloc and friends as well as PyMem_Malloc and friends. | Guido van Rossum | 1997-08-05 | 1 | -2/+19 |
|
|
* | Plug memory leak (DECREF doc string properly after inserting in dict). | Guido van Rossum | 1997-08-04 | 1 | -0/+1 |
|
|
* | The reload(sys) test no longer works due to changes in the import | Guido van Rossum | 1997-08-02 | 1 | -4/+4 |
|
|
* | Oops, one more checkin. Use the new tstate/interp interface. | Guido van Rossum | 1997-08-02 | 1 | -1/+2 |
|
|
* | The last of the mass checkins for separate (sub)interpreters. | Guido van Rossum | 1997-08-02 | 7 | -218/+542 |
|
|
* | Removed fatal errors from Py_Initmodule4() (and thus from | Guido van Rossum | 1997-08-02 | 1 | -12/+12 |
|
|
* | Added finalization routines. | Guido van Rossum | 1997-08-02 | 2 | -1/+44 |
|
|
* | Add finialization routines; fixed some memory leaks related to this. | Guido van Rossum | 1997-08-02 | 1 | -4/+35 |
|
|
* | Free the malloc'ed buffer that holds the command once we're done with it. | Guido van Rossum | 1997-08-02 | 1 | -2/+3 |
|
|
* | Avoid function calls to access the current thread state and builtins | Guido van Rossum | 1997-08-02 | 1 | -4/+2 |
|
|
* | Added internal routine PyString_Fini() which deletes all interned | Guido van Rossum | 1997-08-02 | 1 | -0/+18 |
|
|
* | Mass checkin (more to follow for other directories). | Guido van Rossum | 1997-08-02 | 7 | -98/+27 |
|
|
* | Add cast to PyInt_AS_LONG macro, as suggested by Marc Lemburg. | Guido van Rossum | 1997-08-02 | 1 | -1/+1 |
|
|
* | Add cast to PyFloat_AS_DOUBLE macro, as suggested by Marc Lemburg. | Guido van Rossum | 1997-08-02 | 1 | -1/+1 |
|
|
* | Add a simple way to enable purify; now you can set the Make variable | Guido van Rossum | 1997-08-02 | 1 | -1/+1 |
|
|
* | Print ps (process status) for us when starting a new thread. | Guido van Rossum | 1997-08-02 | 1 | -9/+40 |
|
|
* | Functionality enhancement: allow other threads to use Tk commands | Guido van Rossum | 1997-08-02 | 1 | -243/+211 |
|
|
* | Compatibility with Tcl/Tk 8.0b*. | Guido van Rossum | 1997-08-01 | 1 | -14/+28 |
|
|
* | Add definitions for symbolic constants LOCK_{EX,NB,SH,UN}. | Guido van Rossum | 1997-07-31 | 1 | -0/+25 |
|
|
* | Extend the "Don Beaudry hack" with "Guido's corollary" -- if the base | Guido van Rossum | 1997-07-31 | 1 | -10/+27 |
|
|
* | Added mimify docs (Sjoerd). | Guido van Rossum | 1997-07-30 | 7 | -1/+159 |
|
|
* | Mention decode_base64 in example. | Guido van Rossum | 1997-07-30 | 1 | -1/+1 |
|
|
* | l2h target: l2htut was listed twice and l2hapi was skipped. Fixed. | Fred Drake | 1997-07-30 | 1 | -1/+1 |
|
|
* | Final set of CW11 projects, before switch to CW Pro 1. | Jack Jansen | 1997-07-28 | 35 | -9518/+9931 |
|
|
* | Finally plug the memory leak caused by syntax error (including | Guido van Rossum | 1997-07-27 | 1 | -1/+4 |
|
|
* | Plugged a leak. (The same as the one plugged in compile.c -- forgot | Guido van Rossum | 1997-07-26 | 1 | -0/+1 |
|
|
* | Moved the special compile of getbuildno.o to ../Makefile.in. | Guido van Rossum | 1997-07-25 | 1 | -8/+1 |
|
|
* | Build getbuildno.o here, to adequately update it every time a new | Guido van Rossum | 1997-07-25 | 1 | -1/+15 |
|
|
* | Use Py_NewInterpreter() and friends. Remove saving/restoring of std files. | Guido van Rossum | 1997-07-25 | 1 | -22/+16 |
|
|
* | Plug a leak in code_dealloc() (and reordered the deallocs to match the | Guido van Rossum | 1997-07-25 | 1 | -3/+2 |
|
|
* | Tweaks by Lars Wirzenius to parse some more forms of illegal dates: | Guido van Rossum | 1997-07-25 | 1 | -2/+5 |
|
|
* | Added createmessage() -- Lars Wirzenius. | Guido van Rossum | 1997-07-25 | 1 | -0/+26 |
|
|