* "unicode_internal" codec is removed.
(Contributed by Inada Naoki in :issue:`36297`.)
+* The ``Cache`` and ``Statement`` objects of the :mod:`sqlite3` module are not
+ exposed to the user.
+ (Contributed by Aviv Palivoda in :issue:`30262`.)
+
Porting to Python 3.8
=====================
PyModule_AddObject(module, "Connection", (PyObject*) &pysqlite_ConnectionType);
Py_INCREF(&pysqlite_CursorType);
PyModule_AddObject(module, "Cursor", (PyObject*) &pysqlite_CursorType);
- Py_INCREF(&pysqlite_CacheType);
- PyModule_AddObject(module, "Statement", (PyObject*)&pysqlite_StatementType);
- Py_INCREF(&pysqlite_StatementType);
- PyModule_AddObject(module, "Cache", (PyObject*) &pysqlite_CacheType);
Py_INCREF(&pysqlite_PrepareProtocolType);
PyModule_AddObject(module, "PrepareProtocol", (PyObject*) &pysqlite_PrepareProtocolType);
Py_INCREF(&pysqlite_RowType);