diff options
| author | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2004-09-29 17:56:10 +0000 |
|---|---|---|
| committer | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2004-09-29 17:56:10 +0000 |
| commit | 712695306aa002f3c7acbcccf20210cf4eaec4b0 (patch) | |
| tree | 109be96e66e187a20a9b650eb1bc5e82e6a0fb41 /docutils/test | |
| parent | 1aef109c618658103c37ec4885160746c21ac5bc (diff) | |
| download | docutils-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')
| -rw-r--r-- | docutils/test/DocutilsTestSupport.py | 3 |
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): |
