Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles
renaming of `cPickle` to `pickle`. The warning was annoying since there's no alternative to cPickle if you care about performance. Patch by Florent Xicluna.
This commit is contained in:
parent
ce8e33a095
commit
8015725d4f
|
@ -336,7 +336,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', 'cPickle', 'bsddb', 'dbhash')
|
'sv', 'bsddb', 'dbhash')
|
||||||
|
|
||||||
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
|
||||||
|
|
|
@ -65,6 +65,11 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #7092: Remove py3k warning when importing cPickle. 2to3 handles
|
||||||
|
renaming of `cPickle` to `pickle`. The warning was annoying since there's
|
||||||
|
no alternative to cPickle if you care about performance. Patch by Florent
|
||||||
|
Xicluna.
|
||||||
|
|
||||||
- Issue #7455: Fix possible crash in cPickle on invalid input. Patch by
|
- Issue #7455: Fix possible crash in cPickle on invalid input. Patch by
|
||||||
Victor Stinner.
|
Victor Stinner.
|
||||||
|
|
||||||
|
|
|
@ -5973,12 +5973,6 @@ 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;
|
||||||
|
|
Loading…
Reference in New Issue