mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Added Python 3.0 warning to cPickle.
This commit is contained in:
parent
ea0b22a167
commit
3c4971c40e
2 changed files with 7 additions and 1 deletions
|
@ -5710,6 +5710,12 @@ initcPickle(void)
|
|||
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue