forked from pool/python-manuel
Accepting request 1012033 from home:pgajdos:python
- added patches fix https://github.com/benji-york/manuel/issues/33 + python-manuel-no-six.patch OBS-URL: https://build.opensuse.org/request/show/1012033 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-manuel?expand=0&rev=21
This commit is contained in:
20
python-manuel-no-six.patch
Normal file
20
python-manuel-no-six.patch
Normal file
@@ -0,0 +1,20 @@
|
||||
Index: manuel-1.12.4/src/manuel/doctest.py
|
||||
===================================================================
|
||||
--- manuel-1.12.4.orig/src/manuel/doctest.py
|
||||
+++ manuel-1.12.4/src/manuel/doctest.py
|
||||
@@ -3,13 +3,13 @@ from __future__ import absolute_import
|
||||
import doctest
|
||||
import manuel
|
||||
import os.path
|
||||
-import six
|
||||
+import io
|
||||
|
||||
DocTestRunner = doctest.DocTestRunner
|
||||
DebugRunner = doctest.DebugRunner
|
||||
|
||||
|
||||
-class DocTestResult(six.StringIO):
|
||||
+class DocTestResult(io.StringIO):
|
||||
pass
|
||||
|
||||
|
||||
Reference in New Issue
Block a user