gh-96415: Remove types._cell_factory from a module namespace (#96416)

Closes #96415
This commit is contained in:
Nikita Sobolev 2022-10-07 20:27:14 +03:00 committed by GitHub
parent cae7d1d7a7
commit 5ba4875aec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -60,7 +60,7 @@ def _m(self): pass
GetSetDescriptorType = type(FunctionType.__code__)
MemberDescriptorType = type(FunctionType.__globals__)
del sys, _f, _g, _C, _c, _ag # Not for export
del sys, _f, _g, _C, _c, _ag, _cell_factory # Not for export
# Provide a PEP 3115 compliant mechanism for class creation

View file

@ -0,0 +1 @@
Remove ``types._cell_factory`` from module namespace.