summaryrefslogtreecommitdiff
path: root/sandbox/tibs/pysource/test/testinterpreted2.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/tibs/pysource/test/testinterpreted2.py')
-rwxr-xr-xsandbox/tibs/pysource/test/testinterpreted2.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/sandbox/tibs/pysource/test/testinterpreted2.py b/sandbox/tibs/pysource/test/testinterpreted2.py
deleted file mode 100755
index 59dac777a..000000000
--- a/sandbox/tibs/pysource/test/testinterpreted2.py
+++ /dev/null
@@ -1,37 +0,0 @@
-"""
-This is the example from David Goodger's DPS document pysource-reader.txt.
-"""
-
-__docformat__ = "restructuredtext"
-
-class Keeper(Storer):
-
- """
- Extend `Storer`. Class attribute `instances` keeps track of
- the number of `Keeper` objects instantiated.
- """
-
- instances = 0
- """How many `Keeper` objects are there?"""
-
- def __init__(self):
- """
- Extend `Storer.__init__()` to keep track of instances.
-
- Keep count in `self.instances` and data in `self.data`.
- """
- Storer.__init__(self)
- self.instances += 1
-
- self.data = []
- """Store data in a list, most recent last."""
-
- def storedata(self, data):
- """
- Extend `Storer.storedata()`; append new `data` to a list
- (in `self.data`).
-
- Use :method:`Keeper.storedata` to store the object's data in
- `Keeper.data`:instance_attribute:.
- """
- self.data = data