summaryrefslogtreecommitdiff
path: root/suds/transport
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2009-03-18 22:22:20 +0000
committerjortel <devnull@localhost>2009-03-18 22:22:20 +0000
commitc5b63e00de1608ff2f55e5dea8b9e9eae6f5b54d (patch)
tree7f8e277544e6b366bfe1884cf436573e00d28c7b /suds/transport
parent32ebd10d5aeb81c6b8f476bc1380a310f9dc11b8 (diff)
downloadsuds-c5b63e00de1608ff2f55e5dea8b9e9eae6f5b54d.tar.gz
fix epydocs
Diffstat (limited to 'suds/transport')
-rw-r--r--suds/transport/cache.py20
1 files changed, 4 insertions, 16 deletions
diff --git a/suds/transport/cache.py b/suds/transport/cache.py
index 212d838..41b4c66 100644
--- a/suds/transport/cache.py
+++ b/suds/transport/cache.py
@@ -51,14 +51,8 @@ class FileCache(Cache):
@type location: str
@param duration: The cached file duration which defines how
long the file will be cached. A duration=0 means forever.
- @see: keywords
- @type duration: {unit : value}
- @keyword months: Months
- @keyword weeks: Weeks
- @keyword days: Days
- @keyword hours: Hours
- @keyword minutes: Minutes
- @keyword seconds: Seconds
+ The duration may be: (months|weeks|days|hours|minutes|seconds).
+ @type duration: {unit:value}
"""
self.location = location
self.duration = (None, 0)
@@ -71,14 +65,8 @@ class FileCache(Cache):
file will be cached.
@param duration: The cached file duration which defines how
long the file will be cached. A duration=0 means forever.
- @see: keywords
- @type duration: {unit : value}
- @keyword months: Months
- @keyword weeks: Weeks
- @keyword days: Days
- @keyword hours: Hours
- @keyword minutes: Minutes
- @keyword seconds: Seconds
+ The duration may be: (months|weeks|days|hours|minutes|seconds).
+ @type duration: {unit:value}
"""
if len(duration) == 1:
arg = duration.items()[0]