MCPcopy
hub / github.com/cool-RR/PySnooper / is_compatible_with_current_python_version

Method is_compatible_with_current_python_version

tests/utils.py:43–50  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

41 pass
42
43 def is_compatible_with_current_python_version(self):
44 compatible = True
45 if self.min_python_version and self.min_python_version > sys.version_info:
46 compatible = False
47 if self.max_python_version and self.max_python_version < sys.version_info:
48 compatible = False
49
50 return compatible
51
52 def __repr__(self):
53 init_arguments = get_function_arguments(self.__init__,

Callers 1

assert_outputFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected