mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-19 06:57:55 +05:00

class MeshMeta(type): def __instancecheck__(cls, inst): """Implement isinstance(inst, cls).""" return any(cls.__subclasscheck__(c) for c in {type(inst), inst.__class__}) def __subclasscheck__(cls, sub): """Implement issubclass(sub, cls).""" return type.__subclasscheck__(cls, sub) or (cls.__name__ == sub.__name__ and cls.__module__ == sub.__module__) ... class Mesh: __metaclass__ = MeshMeta ...
The file is empty.
Description
Languages
C++
85.2%
Python
12.8%
CMake
1.1%
HTML
0.4%
C
0.3%
Other
0.1%