summaryrefslogtreecommitdiff
path: root/c/ffi_obj.c
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2020-05-28 15:50:56 +0200
committerArmin Rigo <arigo@tunes.org>2020-05-28 15:50:56 +0200
commitab1d6096f86f3364b78a19a67e6fd908acb57c1a (patch)
tree36dacc9a391164dc6070003e25da622010d5e9e1 /c/ffi_obj.c
parent6c6b4102077dec4eb249d3ca42a1bd0b343aece2 (diff)
downloadcffi-ab1d6096f86f3364b78a19a67e6fd908acb57c1a.tar.gz
Systematically expose all types on the _cffi_backend module
under their correct name. This name starts with '__' if it is supposed to be non-portable and not guaranteed.
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 1e8cc6f..05c3a6d 100644
--- a/c/ffi_obj.c
+++ b/c/ffi_obj.c
@@ -1137,7 +1137,7 @@ static PyGetSetDef ffi_getsets[] = {
static PyTypeObject FFI_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
- "CompiledFFI",
+ "_cffi_backend.FFI",
sizeof(FFIObject),
0,
(destructor)ffi_dealloc, /* tp_dealloc */