File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 88
99* The C extension now correctly supports objects that implement the
1010 ``os.PathLike `` interface.
11+ * The ``Metadata `` class object is now available from the C extension
12+ module as ``maxminddb.extension.Metadata `` rather than
13+ ``maxminddb.extension.extension ``.
1114
12152.0.3 (2020-10-16)
1316++++++++++++++++++
Original file line number Diff line number Diff line change @@ -738,7 +738,7 @@ PyMODINIT_FUNC PyInit_extension(void) {
738738 if (PyType_Ready (& Metadata_Type )) {
739739 return NULL ;
740740 }
741- PyModule_AddObject (m , "extension " , (PyObject * )& Metadata_Type );
741+ PyModule_AddObject (m , "Metadata " , (PyObject * )& Metadata_Type );
742742
743743 PyObject * error_mod = PyImport_ImportModule ("maxminddb.errors" );
744744 if (error_mod == NULL ) {
You can’t perform that action at this time.
0 commit comments