'sunos5' : ('sunaudiodev', 'SUNAUDIODEV'),
}
optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop',
- 'sv')
+ 'sv', 'cPickle')
def check_removal(self, module_name, optional=False):
"""Make sure the specified module, when imported, raises a
PyObject *format_version;
PyObject *compatible_formats;
+ /* XXX: Should mention that the pickle module will include the C
+ XXX: optimized implementation automatically. */
+ if (PyErr_WarnPy3k("the cPickle module has been removed in "
+ "Python 3.0", 2) < 0)
+ return;
+
Py_TYPE(&Picklertype) = &PyType_Type;
Py_TYPE(&Unpicklertype) = &PyType_Type;
Py_TYPE(&PdataType) = &PyType_Type;