From 712695306aa002f3c7acbcccf20210cf4eaec4b0 Mon Sep 17 00:00:00 2001 From: wiemann Date: Wed, 29 Sep 2004 17:56:10 +0000 Subject: added close() method for DevNull git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@2669 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- docutils/test/DocutilsTestSupport.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docutils/test/DocutilsTestSupport.py') 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): -- cgit v1.2.1