From bbc9c635b0abf37efdba738d516d32f66869598a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 26 Nov 2019 07:49:25 -0500 Subject: [PATCH] docstring --- src/allmydata/test/storage_plugin.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/allmydata/test/storage_plugin.py b/src/allmydata/test/storage_plugin.py index f997c387a..570ea38d2 100644 --- a/src/allmydata/test/storage_plugin.py +++ b/src/allmydata/test/storage_plugin.py @@ -91,6 +91,12 @@ class DummyStorage(object): class GetCounter(Resource): + """ + ``GetCounter`` is a resource that returns a count of the number of times + it has rendered a response to a GET request. + + :ivar int value: The number of ``GET`` requests rendered so far. + """ value = 0 def render_GET(self, request): self.value += 1