diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-12 03:39:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-12 03:39:47 (GMT) |
commit | 4ca744c70e034e00295ba96f10191d946abd5c30 (patch) | |
tree | 91499a7b9d15e944758518e7a84f469048bbd595 | |
parent | 4de96c2fd869fe566c2803e33943a5e99ab87799 (diff) | |
download | cpython-4ca744c70e034e00295ba96f10191d946abd5c30.zip cpython-4ca744c70e034e00295ba96f10191d946abd5c30.tar.gz cpython-4ca744c70e034e00295ba96f10191d946abd5c30.tar.bz2 |
Added information for PyEval_EvalCode().
Fixed a couple of typos (new references are represented by "+1", not "1").
-rw-r--r-- | Doc/api/refcounts.dat | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index c31d3b3..06db30c 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -216,6 +216,11 @@ PyEval_RestoreThread:PyThreadState*:tstate:: PyEval_SaveThread:PyThreadState*::: +PyEval_EvalCode:PyObject*::+1: +PyEval_EvalCode:PyCodeObject*:co:0: +PyEval_EvalCode:PyObject*:globals:0: +PyEval_EvalCode:PyObject*:locals:0: + PyFile_AsFile:FILE*::: PyFile_AsFile:PyFileObject*:p:0: @@ -649,7 +654,7 @@ PyRun_AnyFile:int::: PyRun_AnyFile:FILE*:fp:: PyRun_AnyFile:char*:filename:: -PyRun_File:PyObject*::1:??? -- same as eval_code2() +PyRun_File:PyObject*::+1:??? -- same as eval_code2() PyRun_File:FILE*:fp:: PyRun_File:char*:filename:: PyRun_File:int:start:: @@ -671,7 +676,7 @@ PyRun_SimpleFile:char*:filename:: PyRun_SimpleString:int::: PyRun_SimpleString:char*:command:: -PyRun_String:PyObject*::1:??? -- same as eval_code2() +PyRun_String:PyObject*::+1:??? -- same as eval_code2() PyRun_String:char*:str:: PyRun_String:int:start:: PyRun_String:PyObject*:globals:0: |