1643 Public method to return the status of the debug properties. |
1643 Public method to return the status of the debug properties. |
1644 |
1644 |
1645 @return load status of debug properties |
1645 @return load status of debug properties |
1646 @rtype bool |
1646 @rtype bool |
1647 """ |
1647 """ |
1648 return self.debugPropertiesLoaded or self.__pdata["EMBEDDED_VENV"] |
1648 return self.debugPropertiesLoaded |
1649 |
1649 |
1650 def __showDebugProperties(self): |
1650 def __showDebugProperties(self): |
1651 """ |
1651 """ |
1652 Private slot to display the debugger properties dialog. |
1652 Private slot to display the debugger properties dialog. |
1653 """ |
1653 """ |
7942 @pyqtSlot() |
7942 @pyqtSlot() |
7943 def __clearByteCodeCaches(self, directory=None): |
7943 def __clearByteCodeCaches(self, directory=None): |
7944 """ |
7944 """ |
7945 Private method to recursively clear the byte code caches of a given directory. |
7945 Private method to recursively clear the byte code caches of a given directory. |
7946 |
7946 |
7947 Note: The byte code cache directiries are named '__pycache__'. |
7947 Note: The byte code cache directories are named '__pycache__'. |
7948 |
7948 |
7949 @param directory directory name to clear byte code caches from (defaults to |
7949 @param directory directory name to clear byte code caches from (defaults to |
7950 None) |
7950 None) |
7951 @type str (optional) |
7951 @type str (optional) |
7952 """ |
7952 """ |