diff options
author | Fred Drake <fdrake@acm.org> | 2000-04-10 18:25:09 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-04-10 18:25:09 (GMT) |
commit | db2764d941f338028a7fdc164ed92a38768d6849 (patch) | |
tree | 5760dfb00de4b4402eb1cfcec1fe175880ea55a6 | |
parent | 5e872de6c70a60af80a45f7929c1f30e0886648a (diff) | |
download | cpython-db2764d941f338028a7fdc164ed92a38768d6849.zip cpython-db2764d941f338028a7fdc164ed92a38768d6849.tar.gz cpython-db2764d941f338028a7fdc164ed92a38768d6849.tar.bz2 |
The reference count field for PyErr_NoMemory() and
PyErr_SetFromErrno() should be "null".
-rw-r--r-- | Doc/api/refcounts.dat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index 04a9d52..8da1bf2 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -159,7 +159,7 @@ PyErr_NewException:char*:name:: PyErr_NewException:PyObject*:base:0: PyErr_NewException:PyObject*:dict:0: -PyErr_NoMemory:PyObject*::0: +PyErr_NoMemory:PyObject*::null: PyErr_NormalizeException:void::: PyErr_NormalizeException:PyObject**:exc::??? @@ -175,7 +175,7 @@ PyErr_Restore:PyObject*:type:0: PyErr_Restore:PyObject*:value:0: PyErr_Restore:PyObject*:traceback:0: -PyErr_SetFromErrno:PyObject*::: +PyErr_SetFromErrno:PyObject*::null: PyErr_SetFromErrno:PyObject*:type:0: PyErr_SetInterrupt:void::: |