Commit 3c4971c4 authored by Alexandre Vassalotti's avatar Alexandre Vassalotti

Added Python 3.0 warning to cPickle.

parent ea0b22a1
...@@ -155,7 +155,7 @@ class TestStdlibRemovals(unittest.TestCase): ...@@ -155,7 +155,7 @@ class TestStdlibRemovals(unittest.TestCase):
'sunos5' : ('sunaudiodev', 'SUNAUDIODEV'), 'sunos5' : ('sunaudiodev', 'SUNAUDIODEV'),
} }
optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop', optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop',
'sv') 'sv', 'cPickle')
def check_removal(self, module_name, optional=False): def check_removal(self, module_name, optional=False):
"""Make sure the specified module, when imported, raises a """Make sure the specified module, when imported, raises a
......
...@@ -5710,6 +5710,12 @@ initcPickle(void) ...@@ -5710,6 +5710,12 @@ initcPickle(void)
PyObject *format_version; PyObject *format_version;
PyObject *compatible_formats; 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(&Picklertype) = &PyType_Type;
Py_TYPE(&Unpicklertype) = &PyType_Type; Py_TYPE(&Unpicklertype) = &PyType_Type;
Py_TYPE(&PdataType) = &PyType_Type; Py_TYPE(&PdataType) = &PyType_Type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment