Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
db48dbe1
Commit
db48dbe1
authored
Oct 14, 2009
by
Lisandro Dalcin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for unittest changes in upcoming Py2.7 and Py3.2
parent
1f956c69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
runtests.py
runtests.py
+7
-2
No files found.
runtests.py
View file @
db48dbe1
...
...
@@ -427,9 +427,14 @@ class _FakeClass(object):
def
__init__
(
self
,
**
kwargs
):
self
.
__dict__
.
update
(
kwargs
)
class
PartialTestResult
(
unittest
.
_TextTestResult
):
try
:
# Py2.7+ and Py3.2+
from
unittest.runner
import
_TextTestResult
except
ImportError
:
from
unittest
import
_TextTestResult
class
PartialTestResult
(
_TextTestResult
):
def
__init__
(
self
,
base_result
):
unittest
.
_TextTestResult
.
__init__
(
_TextTestResult
.
__init__
(
self
,
self
.
_StringIO
(),
True
,
base_result
.
dots
+
base_result
.
showAll
*
2
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment