mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
use correct function in example
This commit is contained in:
parent
79415523d6
commit
4482929734
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ main(int argc, char *argv[])
|
|||
Py_DECREF(pName);
|
||||
|
||||
if (pModule != NULL) {
|
||||
pFunc = PyDict_GetItemString(pModule, argv[2]);
|
||||
pFunc = PyObject_GetAttrString(pModule, argv[2]);
|
||||
/* pFunc is a new reference */
|
||||
|
||||
if (pFunc && PyCallable_Check(pFunc)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue