Revision: 3556
Author: janne.t.harkonen
Date: Wed May 26 06:32:12 2010
Log: These TODOs should be reported as issues if they are needed
http://code.google.com/p/robotframework/source/detail?r=3556

Modified:
 /trunk/src/robot/libraries/OperatingSystem.py
 /trunk/src/robot/libraries/Remote.py

=======================================
--- /trunk/src/robot/libraries/OperatingSystem.py       Thu Apr 22 06:15:01 2010
+++ /trunk/src/robot/libraries/OperatingSystem.py       Wed May 26 06:32:12 2010
@@ -1049,7 +1049,6 @@

     def get_file_size(self, path):
         """Returns and logs file size as an integer in bytes"""
-        # TODO: Add an option to return size in kilos, megas or gigas
         path = self._absnorm(path)
         size = os.stat(path).st_size
         plural = plural_or_not(size)
=======================================
--- /trunk/src/robot/libraries/Remote.py        Fri Feb 26 03:16:21 2010
+++ /trunk/src/robot/libraries/Remote.py        Wed May 26 06:32:12 2010
@@ -62,7 +62,6 @@
         return result.return_

     def _handle_argument(self, arg):
-        # TODO: Should handle also basic Java types
         if isinstance(arg, (basestring, int, long, float)):
             return arg
         if isinstance(arg, (tuple, list)):

Reply via email to