소스 검색

Add __repr__ method to the Module object

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54557 15284696-431f-4ddb-bdfa-cd5b030d7da7
Pietro Zambelli 12 년 전
부모
커밋
fdcf2db654
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      lib/python/pygrass/modules/__init__.py

+ 3 - 0
lib/python/pygrass/modules/__init__.py

@@ -559,6 +559,9 @@ class Module(object):
     def __str__(self):
         return ' '.join(self.make_cmd())
 
+    def __repr__(self):
+        return "Module(%r)" % self.name
+
     @property
     def __doc__(self):
         """{cmd_name}({cmd_params})