--- a/eric6/MicroPython/MicroPythonCommandsInterface.py Tue Aug 13 16:28:43 2019 +0200 +++ b/eric6/MicroPython/MicroPythonCommandsInterface.py Tue Aug 13 16:39:31 2019 +0200 @@ -432,7 +432,6 @@ raise IOError(self.__shortError(err)) return out.decode("utf-8").strip() - # TODO: test this def rm(self, filename): """ Public method to remove a file from the connected device. @@ -452,7 +451,6 @@ if err: raise IOError(self.__shortError(err)) - # TODO: test this def rmrf(self, name, recursive=False, force=False): """ Public method to remove a file or directory recursively. @@ -502,7 +500,6 @@ raise IOError(self.__shortError(err)) return ast.literal_eval(out.decode("utf-8")) - # TODO: test this def mkdir(self, dirname): """ Public method to create a new directory. @@ -522,7 +519,6 @@ if err: raise IOError(self.__shortError(err)) - # TODO: test this def rmdir(self, dirname): """ Public method to remove a directory. @@ -542,7 +538,6 @@ if err: raise IOError(self.__shortError(err)) - # TODO: test this def put(self, hostFileName, deviceFileName=None): """ Public method to copy a local file to the connected device. @@ -585,7 +580,6 @@ raise IOError(self.__shortError(err)) return True - # TODO: test this def get(self, deviceFileName, hostFileName=None): """ Public method to copy a file from the connected device.