src/eric7/Project/Project.py

branch
server
changeset 10651
280a53840aa3
parent 10636
24d9e6ff8111
parent 10650
4618223e6e32
child 10704
27d21e5163b8
equal deleted inserted replaced
10636:24d9e6ff8111 10651:280a53840aa3
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 """
6330 # do not bother with dirs here... 6330 # do not bother with dirs here...
6331 if isdir_ns: 6331 if isdir_ns:
6332 if recursiveSearch: 6332 if recursiveSearch:
6333 d = self.getRelativePath(ns) 6333 d = self.getRelativePath(ns)
6334 if d not in dirs: 6334 if d not in dirs:
6335 dirs.append(d) # noqa: M538 6335 dirs.append(d) # noqa: M569
6336 continue 6336 continue
6337 6337
6338 filetype = "" 6338 filetype = ""
6339 bfn = ( 6339 bfn = (
6340 self.__remotefsInterface.basename(fn) 6340 self.__remotefsInterface.basename(fn)
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 """

eric ide

mercurial