Browse Source

[2225_statistics] add note to _concat()

Naoki Kambe 12 years ago
parent
commit
08d9023ba3
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/lib/python/isc/statistics/counters.py

+ 3 - 1
src/lib/python/isc/statistics/counters.py

@@ -130,7 +130,9 @@ def _stop_timer(start_time, element, spec, identifier):
     _set_counter(element, spec, identifier, sec)
 
 def _concat(*args, sep='/'):
-    """Concatenates words in args with a separator('/')
+    """A helper function that is used to generate an identifier for
+    statistics item names. It concatenates words in args with a
+    separator('/')
     """
     return sep.join(args)