Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(10) | Call(5) | Derive(0) | Import(5)
def _apply_defusing(defused_mod): assert defused_mod is sys.modules[defused_mod.__name__] stdlib_name = defused_mod.__origin__ __import__(stdlib_name, {}, {}, ["*"]) stdlib_mod = sys.modules[stdlib_name] stdlib_names = set(dir(stdlib_mod)) for name, obj in vars(defused_mod).items(): if name.startswith("_") or name not in stdlib_names: continue setattr(stdlib_mod, name, obj) return stdlib_mod
from __future__ import print_function, absolute_import from .common import (DefusedXmlException, DTDForbidden, EntitiesForbidden, ExternalReferenceForbidden, NotSupportedError, _apply_defusing)
for defused_mod in [cElementTree, ElementTree, minidom, pulldom, sax, expatbuilder, expatreader]: stdlib_mod = _apply_defusing(defused_mod) defused[defused_mod] = stdlib_mod
src/t/v/tvrenamr-3.6.0/tvrenamr/vendor/defusedxml/__init__.py tvrenamr(Download)
from __future__ import print_function, absolute_import from .common import (DefusedXmlException, DTDForbidden, EntitiesForbidden, ExternalReferenceForbidden, NotSupportedError, _apply_defusing)
for defused_mod in [cElementTree, ElementTree, minidom, pulldom, sax, expatbuilder, expatreader]: stdlib_mod = _apply_defusing(defused_mod) defused[defused_mod] = stdlib_mod
src/t/v/tvrenamr-HEAD/tvrenamr/vendor/defusedxml/__init__.py tvrenamr(Download)
from __future__ import print_function, absolute_import from .common import (DefusedXmlException, DTDForbidden, EntitiesForbidden, ExternalReferenceForbidden, NotSupportedError, _apply_defusing)
for defused_mod in [cElementTree, ElementTree, minidom, pulldom, sax, expatbuilder, expatreader]: stdlib_mod = _apply_defusing(defused_mod) defused[defused_mod] = stdlib_mod
src/s/d/sdetools-HEAD/sdetools/extlib/defusedxml/__init__.py sdetools(Download)
from __future__ import print_function, absolute_import from .common import (DefusedXmlException, DTDForbidden, EntitiesForbidden, ExternalReferenceForbidden, NotSupportedError, _apply_defusing)
for defused_mod in [cElementTree, ElementTree, minidom, pulldom, sax, expatbuilder, expatreader]: stdlib_mod = _apply_defusing(defused_mod) defused[defused_mod] = stdlib_mod
src/d/e/defusedxml-0.4.1/defusedxml/__init__.py defusedxml(Download)
from __future__ import print_function, absolute_import from .common import (DefusedXmlException, DTDForbidden, EntitiesForbidden, ExternalReferenceForbidden, NotSupportedError, _apply_defusing)
for defused_mod in [cElementTree, ElementTree, minidom, pulldom, sax, expatbuilder, expatreader]: stdlib_mod = _apply_defusing(defused_mod) defused[defused_mod] = stdlib_mod