summaryrefslogtreecommitdiff
path: root/docutils/test/DocutilsTestSupport.py
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-09-29 17:56:10 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-09-29 17:56:10 +0000
commit712695306aa002f3c7acbcccf20210cf4eaec4b0 (patch)
tree109be96e66e187a20a9b650eb1bc5e82e6a0fb41 /docutils/test/DocutilsTestSupport.py
parent1aef109c618658103c37ec4885160746c21ac5bc (diff)
downloaddocutils-712695306aa002f3c7acbcccf20210cf4eaec4b0.tar.gz
added close() method for DevNull
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@2669 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/DocutilsTestSupport.py')
-rw-r--r--docutils/test/DocutilsTestSupport.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/docutils/test/DocutilsTestSupport.py b/docutils/test/DocutilsTestSupport.py
index 6272557aa..3f8451959 100644
--- a/docutils/test/DocutilsTestSupport.py
+++ b/docutils/test/DocutilsTestSupport.py
@@ -80,6 +80,9 @@ class DevNull:
def write(self, string):
pass
+ def close(self):
+ pass
+
class CustomTestCase(unittest.TestCase):