diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-15 04:36:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-15 04:36:16 (GMT) |
commit | 34c391d7437a9005bb581d643fcad4f957dfbe88 (patch) | |
tree | 1ac713793e9e4ce77e1a3cc85f99015517f5bf4b /Doc/api | |
parent | a2b6ad6e2744d3d5819496a91e460b97c93d4d2d (diff) | |
download | cpython-34c391d7437a9005bb581d643fcad4f957dfbe88.zip cpython-34c391d7437a9005bb581d643fcad4f957dfbe88.tar.gz cpython-34c391d7437a9005bb581d643fcad4f957dfbe88.tar.bz2 |
Correct the reference count information for the parameters of
PyErr_Restore().
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/refcounts.dat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index 06db30c..bb71d71 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -174,9 +174,9 @@ PyErr_Occurred:PyObject*::0: PyErr_Print:void::: PyErr_Restore:void::: -PyErr_Restore:PyObject*:type:0: -PyErr_Restore:PyObject*:value:0: -PyErr_Restore:PyObject*:traceback:0: +PyErr_Restore:PyObject*:type:-1: +PyErr_Restore:PyObject*:value:-1: +PyErr_Restore:PyObject*:traceback:-1: PyErr_SetFromErrno:PyObject*::null: PyErr_SetFromErrno:PyObject*:type:0: |