mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-36842: Implement PEP 578 (GH-12613)
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs.
This commit is contained in:
parent
e788057a91
commit
b82e17e626
70 changed files with 3565 additions and 1816 deletions
|
|
@ -1436,6 +1436,7 @@ class _Unpickler:
|
|||
|
||||
def find_class(self, module, name):
|
||||
# Subclasses may override this.
|
||||
sys.audit('pickle.find_class', module, name)
|
||||
if self.proto < 3 and self.fix_imports:
|
||||
if (module, name) in _compat_pickle.NAME_MAPPING:
|
||||
module, name = _compat_pickle.NAME_MAPPING[(module, name)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue