(self, name)
| 54 | """One series in the GraphiteGraph.""" |
| 55 | |
| 56 | def __init__(self, name): |
| 57 | self.name = name |
| 58 | |
| 59 | def apply(self, funcname, *args): |
| 60 | """Applies a function to this series. |
nothing calls this directly
no outgoing calls
no test coverage detected