- 8d19767 Close #19199: Remove ``PyThreadState.tick_counter`` field by Victor Stinner · 11 years ago
- 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
- 40322e6 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 11 years ago
- 95db2e7 Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deallocating a Tkapp object. by Antoine Pitrou · 11 years ago
- 84f31a5 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 11 years ago
- f28dfdd Issue #17912: Use a doubly linked-list for thread states. by Charles-Francois Natali · 12 years ago
- 8408cea Issue #17094: Clear stale thread states after fork(). by Antoine Pitrou · 12 years ago
- 684cd0e Issue #17522: Add the PyGILState_Check() API. by Kristján Valur Jónsson · 12 years ago
- 2b0218a Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
- 7800f75 Issue #15042: Add PyState_AddModule and PyState_RemoveModule. by Martin v. Löwis · 12 years ago
- 62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. by Brett Cannon · 13 years ago
- fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 13 years ago
- 1e8d8fd #10741: merge with 3.2 by Sandro Tosi · 13 years ago
- 61baee0 #10741: add documentation for PyGILState_GetThisThreadState() by Sandro Tosi · 13 years ago
- 9ea1c8d Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 14 years ago
- 0c759fe Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_* by Antoine Pitrou · 14 years ago
- 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 14 years ago
- 793b531 Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 14 years ago
- 8e4d407 PyGILState_Ensure(), PyGILState_Release(), PyGILState_GetThisThreadState() are by Victor Stinner · 14 years ago
- 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
- 3937083 Make (most of) Python's tests pass under Thread Sanitizer. by Jeffrey Yasskin · 15 years ago
- 45b9be5 Merged revisions 78638 via svnmerge from by Victor Stinner · 15 years ago
- 074e5ed Merge in the new GIL. by Antoine Pitrou · 15 years ago
- 6a27efa Issue 3723: Fixed initialization of subinterpreters by Christian Heimes · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 55fa66d Add comments about PyThreadState and the usage of its fields. by Brett Cannon · 19 years ago
- f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
- 174175b Added a comment about the unreferenced PyThreadState.tick_counter member. by Tim Peters · 21 years ago
- c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 21 years ago
- 4eec95a SF patch #906501: Fix typos in pystate.h comments by Raymond Hettinger · 21 years ago
- b8b6d0c Add PyThreadState_SetAsyncExc(long, PyObject *). by Guido van Rossum · 21 years ago
- 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 22 years ago
- 5ddd4c3 Fixed SF bug #663074. The codec system was using global static by Gustavo Niemeyer · 22 years ago
- 6297a7a - PyEval_GetFrame() is now declared to return a PyFrameObject * by Guido van Rossum · 22 years ago
- 019a78e Assorted patches from Armin Rigo: by Michael W. Hudson · 22 years ago
- d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
- 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
- f5df46d Add a low-level API to access interpreters, for David Beazley. SF patch #436376. by Guido van Rossum · 23 years ago
- f0473d5 Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. by Martin v. Löwis · 23 years ago
- 9e3ad78 This change adjusts the profiling/tracing support so that the common by Fred Drake · 23 years ago
- 55fb6e0 Revise the interface to the profiling and tracing support for the by Fred Drake · 23 years ago
- 2975786 Add a new API, PyThreadState_DeleteCurrent() that combines by Guido van Rossum · 24 years ago
- 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
- 5eb6d4e ANSI-fication and Py_PROTO extermination. by Fred Drake · 24 years ago
- ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
- fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
- a8b47fe I can't seem to do anything right :-) by Guido van Rossum · 26 years ago
- 275ea67 Add macro version of PyThreadState_GET(). This uses by Guido van Rossum · 26 years ago
- 43466ec Add DL_IMPORT(returntype) for all officially exported functions. 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
- ee0a63b Move 'dict' struct member to end of struct. This ensures binary by Guido van Rossum · 27 years ago
- 204751b Add dict struct member and PyThreadState_GetDict() prototype. by Guido van Rossum · 27 years ago
- 29e46a9 Mass checkin (more to follow for other directories). 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
- a027efa Massive changes for separate thread state management. by Guido van Rossum · 28 years ago