Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | /* An extension mechanism to store arbitrary additional per-thread state. | Guido van Rossum | 1998-04-10 | 1 | -0/+21 |
| | | | | | | | | | | PyThreadState_GetDict() returns a dictionary that can be used to hold such state; the caller should pick a unique key and store its state there. If PyThreadState_GetDict() returns NULL, an exception has been raised (most likely MemoryError) and the caller should pass on the exception. */ PyObject * PyThreadState_GetDict() | ||||
* | The warning about thread still having a frame now only happens in | Guido van Rossum | 1997-11-03 | 1 | -1/+1 |
| | | | | verbose mode. | ||||
* | Added missing newline to warning msg | Guido van Rossum | 1997-08-21 | 1 | -1/+1 |
| | |||||
* | The last of the mass checkins for separate (sub)interpreters. | Guido van Rossum | 1997-08-02 | 1 | -26/+102 |
| | | | | | | | Everything should now work again. See the comments for the .h files mass checkin (e.g. pystate.h) for more detail. | ||||
* | Remove confusing usage comments at end. | Guido van Rossum | 1997-07-19 | 1 | -28/+0 |
| | |||||
* | Don't use function prototypes in function definition headers. | Guido van Rossum | 1997-05-20 | 1 | -4/+8 |
| | |||||
* | Massive changes for separate thread state management. | Guido van Rossum | 1997-05-05 | 1 | -0/+163 |
All per-thread globals are moved into a struct which is manipulated separately. |