Home
last modified time | relevance | path

Searched refs:is_from_this_module (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/py-cartopy/Cartopy-0.19.0.post1/lib/cartopy/sphinxext/
H A Dsummarise_package.py98 def is_from_this_module(x): function
101 document_these = filter(is_from_this_module, document_these)
/dports/lang/python311/Python-3.11.0a3/Lib/
H A Denum.py643 is_from_this_module = lambda cls: any(cls is thing for thing in this_module) function
644 first_enum_base = next(cls for cls in mro if is_from_this_module(cls))
661 if cls is object or is_from_this_module(cls):