summaryrefslogtreecommitdiff
path: root/c/ffi_obj.c
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2015-05-26 16:32:42 +0200
committerArmin Rigo <arigo@tunes.org>2015-05-26 16:32:42 +0200
commit8482526f1807d0c5c7f0eca3734df0de6b173f3c (patch)
tree58f8628c51d506897ac4043214a22dba1971285f /c/ffi_obj.c
parentab11623cb6104ecde1805cdc7d3e03774d2a9a7e (diff)
downloadcffi-8482526f1807d0c5c7f0eca3734df0de6b173f3c.tar.gz
ffi.addressof(lib, "function") now returns a regular cdata function pointer
Diffstat (limited to 'c/ffi_obj.c')
-rw-r--r--c/ffi_obj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/ffi_obj.c b/c/ffi_obj.c
index 23348a3..4c107ed 100644
--- a/c/ffi_obj.c
+++ b/c/ffi_obj.c
@@ -416,7 +416,7 @@ PyDoc_STRVAR(ffi_addressof_doc,
"in case of nested structures or arrays.\n"
"\n"
"3. ffi.addressof(<library>, \"name\") returns the address of the named\n"
-"global variable.");
+"function or global variable.");
static PyObject *address_of_global_var(PyObject *args); /* forward */