MicroPythonCommandsInterface: finished testing. micropython

Tue, 13 Aug 2019 16:39:31 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 13 Aug 2019 16:39:31 +0200
branch
micropython
changeset 7136
bddcb634a9b8
parent 7135
44fcfc99b864
child 7137
4ed2573947ff

MicroPythonCommandsInterface: finished testing.

eric6/MicroPython/MicroPythonCommandsInterface.py file | annotate | diff | comparison | revisions
--- 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.

eric ide

mercurial