Staging
v0.8.1
https://github.com/python/cpython
Revision 2975786decbe2358b088a6200914d7c0a2818e72 authored by Guido van Rossum on 23 January 2001, 01:46:06 UTC, committed by Guido van Rossum on 23 January 2001, 01:46:06 UTC
PyThreadState_Delete() and PyEval_ReleaseLock().  It is only defined
if WITH_THREAD is defined.
1 parent 5f827f4
Raw File
Tip revision: 2975786decbe2358b088a6200914d7c0a2818e72 authored by Guido van Rossum on 23 January 2001, 01:46:06 UTC
Add a new API, PyThreadState_DeleteCurrent() that combines
Tip revision: 2975786
Makefile
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.pyc' -o -name core -o -name '*~' \
			-o -name '[@,#]*' -o -name '*.old' \
			-o -name '*.orig' -o -name '*.rej' ')' \
			-print -exec rm -f {} ';'

clobber:	clean
back to top