[Python-modules-commits] [nose] 01/02: Set __qualname__ equal to __name__ on derived classes
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Wed Feb 3 06:45:54 UTC 2016
This is an automated email from the git hooks/post-receive script.
mitya57 pushed a commit to branch master
in repository nose.
commit bbca2ea3f3b7e3dee0b7e2198b56196b1478c6ce
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date: Mon Feb 1 00:05:30 2016 +0300
Set __qualname__ equal to __name__ on derived classes
To make output on Python ≥ 3.5 the same as on previous Python versions.
This fixes #928.
---
functional_tests/test_load_tests_from_test_case.py | 1 +
nose/util.py | 1 +
unit_tests/test_xunit.py | 1 +
3 files changed, 3 insertions(+)
diff --git a/functional_tests/test_load_tests_from_test_case.py b/functional_tests/test_load_tests_from_test_case.py
index 42f8563..13d0c8a 100644
--- a/functional_tests/test_load_tests_from_test_case.py
+++ b/functional_tests/test_load_tests_from_test_case.py
@@ -29,6 +29,7 @@ class NoFixturePlug(Plugin):
pass
def tearDown(self):
pass
+ Derived.__qualname__ = Derived.__name__
# must use nose loader here because the default loader in 2.3
# won't load tests from base classes
l = loader.TestLoader()
diff --git a/nose/util.py b/nose/util.py
index bfe1658..80ab1d4 100644
--- a/nose/util.py
+++ b/nose/util.py
@@ -643,6 +643,7 @@ def transplant_class(cls, module):
pass
C.__module__ = module
C.__name__ = cls.__name__
+ C.__qualname__ = cls.__name__
return C
diff --git a/unit_tests/test_xunit.py b/unit_tests/test_xunit.py
index d98ccba..2a9f69b 100644
--- a/unit_tests/test_xunit.py
+++ b/unit_tests/test_xunit.py
@@ -16,6 +16,7 @@ def mktest():
class TC(unittest.TestCase):
def runTest(self):
pass
+ TC.__qualname__ = TC.__name__
test = TC()
return test
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/nose.git
More information about the Python-modules-commits
mailing list