diff options
| author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-26 12:10:59 +0000 |
|---|---|---|
| committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-26 12:10:59 +0000 |
| commit | 83bba3a37073a7c90e057d742e4e8965a0580088 (patch) | |
| tree | f5751fff9b0e24026443b6d9785441a9ced1d341 /test/DocutilsTestSupport.py | |
| parent | 334d3537daf24dd74f1555c416523d3e376232c9 (diff) | |
| download | docutils-83bba3a37073a7c90e057d742e4e8965a0580088.tar.gz | |
py3: Use new style classes
Signed-off-by: Stephen Finucane <stephen@that.guru>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8345 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'test/DocutilsTestSupport.py')
| -rw-r--r-- | test/DocutilsTestSupport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/DocutilsTestSupport.py b/test/DocutilsTestSupport.py index 0f743e168..b6c3cdeca 100644 --- a/test/DocutilsTestSupport.py +++ b/test/DocutilsTestSupport.py @@ -92,7 +92,7 @@ except: StringList.__repr__ = StringList.__str__ -class DevNull: +class DevNull(object): """Output sink.""" |
