Browse Source

[2225_statistics] Remove unnecessary documentation

Mukund Sivaraman 12 years ago
parent
commit
02a31879b8
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/lib/python/isc/statistics/counters.py

+ 2 - 4
src/lib/python/isc/statistics/counters.py

@@ -307,8 +307,7 @@ class Counters():
         considered to be invoked by a multi-threading
         caller. isc.cc.data.DataNotFoundError is raised when
         incrementing the counter of the item undefined in the spec
-        file. It calls internally a common helper function
-        _incdec()"""
+        file."""
         return self._incdec(*args)
 
     def dec(self, *args):
@@ -316,8 +315,7 @@ class Counters():
         considered to be invoked by a multi-threading
         caller. isc.cc.data.DataNotFoundError is raised when
         decrementing the counter of the item undefined in the spec
-        file. It calls internally a common helper function
-        _incdec()"""
+        file."""
         return self._incdec(*args, step=-1)
 
     def get(self, *args):