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 | 01e27496cf9d56721b2843b5d8227f1f0a37fe3e (patch) | |
| tree | 0442223ff166a3cc771afce32a908e8165d3e51c /test/DocutilsTestSupport.py | |
| parent | 545f59435541222a76907ab6c606bda6ac1dc40f (diff) | |
| download | docutils-01e27496cf9d56721b2843b5d8227f1f0a37fe3e.tar.gz | |
added close() method for DevNull
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@2669 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'test/DocutilsTestSupport.py')
| -rw-r--r-- | test/DocutilsTestSupport.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/DocutilsTestSupport.py b/test/DocutilsTestSupport.py index 6272557aa..3f8451959 100644 --- a/test/DocutilsTestSupport.py +++ b/test/DocutilsTestSupport.py @@ -80,6 +80,9 @@ class DevNull: def write(self, string): pass + def close(self): + pass + class CustomTestCase(unittest.TestCase): |
