Skip to content

Commit 2be00ef

Browse files
committed
MAINT: Fix the module of flagsobj
1 parent b63e256 commit 2be00ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/core/src/multiarray/flagsobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ arrayflags_new(PyTypeObject *NPY_UNUSED(self), PyObject *args, PyObject *NPY_UNU
779779

780780
NPY_NO_EXPORT PyTypeObject PyArrayFlags_Type = {
781781
PyVarObject_HEAD_INIT(NULL, 0)
782-
.tp_name = "numpy.flagsobj",
782+
.tp_name = "numpy.core.multiarray.flagsobj",
783783
.tp_basicsize = sizeof(PyArrayFlagsObject),
784784
.tp_dealloc = (destructor)arrayflags_dealloc,
785785
.tp_repr = (reprfunc)arrayflags_print,

0 commit comments

Comments
 (0)