Commit 9bf97b91 authored by Jim Fulton's avatar Jim Fulton

Added a close method to free request resources.

parent 7d7d1201
......@@ -82,7 +82,7 @@
# attributions are listed in the accompanying credits file.
#
##############################################################################
__version__='$Revision: 1.13 $'[11:-2]
__version__='$Revision: 1.14 $'[11:-2]
from string import join, split, find, rfind, lower, upper
from urllib import quote
......@@ -129,6 +129,9 @@ class BaseRequest:
for k, v in kw.items(): other[k]=v
self.other=other
def close(self):
del self.other
def processInputs(self):
"""Do any input processing that could raise errors
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment