(self)
| 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__, |