diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-02 04:15:00 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-02 04:15:00 (GMT) |
commit | 6d6c1a35e08b95a83dbe47dbd9e6474daff00354 (patch) | |
tree | 542089077b9c2650dcf5c52d6bfcef1baf12d176 /Include/ceval.h | |
parent | 52d55a392600011d3edfe85c694744ec550ad1fe (diff) | |
download | cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.zip cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.tar.gz cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.tar.bz2 |
Merge of descr-branch back into trunk.
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 0fc5cba..ae4d858 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -45,6 +45,9 @@ DL_IMPORT(int) Py_MakePendingCalls(void); DL_IMPORT(void) Py_SetRecursionLimit(int); DL_IMPORT(int) Py_GetRecursionLimit(void); +DL_IMPORT(char *) PyEval_GetFuncName(PyObject *); +DL_IMPORT(char *) PyEval_GetFuncDesc(PyObject *); + /* Interface for threads. A module that plans to do a blocking system call (or something else |