Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 1 | -3/+6 |
| | | | | | | | | | | | | | | | | | | | even farther down, to just before the call to _PyObject_DebugMallocStats(). This required the following changes: - pystate.c, PyThreadState_GetDict(): changed not to raise an exception or issue a fatal error when no current thread state is available, but simply return NULL without raising an exception (ever). - object.c, Py_ReprEnter(): when PyThreadState_GetDict() returns NULL, don't raise an exception but return 0. This means that when printing a container that's recursive, printing will go on and on and on. But that shouldn't happen in the case we care about (see first bullet). - Updated Misc/NEWS and Doc/api/init.tex to reflect changes to PyThreadState_GetDict() definition. | ||||
* | Commit MvL's doc patch for SF bug #221327. This adds an example of | Guido van Rossum | 2003-03-02 | 1 | -0/+22 |
| | | | | calling into Python from a C thread. | ||||
* | A typo, and desist from inaccurately describing some things as lists. | Michael W. Hudson | 2003-02-10 | 1 | -5/+5 |
| | |||||
* | Typo: propogate -> propagate | Thomas Heller | 2002-12-06 | 1 | -2/+2 |
| | | | | Bugfix candidate. | ||||
* | Remove mentionings of DOS. | Martin v. Löwis | 2002-10-10 | 1 | -1/+1 |
| | |||||
* | Update to use the new \csimplemacro macro | Fred Drake | 2002-04-09 | 1 | -17/+19 |
| | |||||
* | Update the description of PyTrace_EXCEPT. | Fred Drake | 2001-10-16 | 1 | -5/+8 |
| | |||||
* | Break the Python/C API manual into smaller files by chapter. This manual | Fred Drake | 2001-10-12 | 1 | -0/+774 |
has grown beyond what font-lock will work with using the default (X)Emacs settings. Indentation of the description has been made consistent, and a number of smaller markup adjustments have been made as well. |