diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-29 15:50:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-29 15:50:54 (GMT) |
commit | 1cfebc73e0ecbcde0b564567606882d70c7812ec (patch) | |
tree | ca375e40efe5b44abc67c402ac6864903696b47f /Doc/data | |
parent | 8d90e383a3517a13d752625231584967397d8ba2 (diff) | |
download | cpython-1cfebc73e0ecbcde0b564567606882d70c7812ec.zip cpython-1cfebc73e0ecbcde0b564567606882d70c7812ec.tar.gz cpython-1cfebc73e0ecbcde0b564567606882d70c7812ec.tar.bz2 |
Issue #9369: The types of `char*` arguments of PyObject_CallFunction() and
PyObject_CallMethod() now changed to `const char*`.
Based on patches by Jörg Müller and Lars Buitinck.
Diffstat (limited to 'Doc/data')
-rw-r--r-- | Doc/data/refcounts.dat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat index f298238..0b56fe5 100644 --- a/Doc/data/refcounts.dat +++ b/Doc/data/refcounts.dat @@ -218,7 +218,7 @@ PyDict_GetItem:PyObject*:key:0: PyDict_GetItemString:PyObject*::0: PyDict_GetItemString:PyObject*:p:0: -PyDict_GetItemString:char*:key:: +PyDict_GetItemString:const char*:key:: PyDict_SetDefault:PyObject*::0: PyDict_SetDefault:PyObject*:p:0: @@ -917,7 +917,7 @@ PyObject_Call:PyObject*:kw:0: PyObject_CallFunction:PyObject*::+1: PyObject_CallFunction:PyObject*:callable_object:0: -PyObject_CallFunction:char*:format:: +PyObject_CallFunction:const char*:format:: PyObject_CallFunction::...:: PyObject_CallFunctionObjArgs:PyObject*::+1: @@ -926,8 +926,8 @@ PyObject_CallFunctionObjArgs::...:: PyObject_CallMethod:PyObject*::+1: PyObject_CallMethod:PyObject*:o:0: -PyObject_CallMethod:char*:m:: -PyObject_CallMethod:char*:format:: +PyObject_CallMethod:const char*:m:: +PyObject_CallMethod:const char*:format:: PyObject_CallMethod::...:: PyObject_CallMethodObjArgs:PyObject*::+1: |