4612 Public method to get the path name of the embedded virtual environment. |
4612 Public method to get the path name of the embedded virtual environment. |
4613 |
4613 |
4614 @return path name of the embedded virtual environment |
4614 @return path name of the embedded virtual environment |
4615 @rtype str |
4615 @rtype str |
4616 """ |
4616 """ |
4617 if ( |
4617 if self.__pdata["EMBEDDED_VENV"] and not FileSystemUtilities.isRemoteFileName( |
4618 self.__pdata["EMBEDDED_VENV"] |
4618 self.ppath |
4619 and not FileSystemUtilities.isRemoteFileName(self.ppath) |
|
4620 ): |
4619 ): |
4621 return self.__findEmbeddedEnvironment() |
4620 return self.__findEmbeddedEnvironment() |
4622 else: |
4621 else: |
4623 return "" |
4622 return "" |
4624 |
4623 |