summaryrefslogtreecommitdiff
path: root/Lib/unittest/case.py
diff options
context:
space:
mode:
authorSteve Cirelli <scirelli+git@gmail.com>2020-02-03 02:06:50 -0500
committerGitHub <noreply@github.com>2020-02-03 07:06:50 +0000
commit032de7324e30c6b44ef272cea3be205a3d768759 (patch)
treece07fdab45f022c3271ae041e81e0a5be81212bc /Lib/unittest/case.py
parent0f2f35e15f9fbee44ce042b724348419d8136bc5 (diff)
downloadcpython-git-032de7324e30c6b44ef272cea3be205a3d768759.tar.gz
bpo-39450 Stripped whitespace before parsing the docstring in TestCase.shortDescription (GH-18175)
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r--Lib/unittest/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index fa64a6ea23..5e5d535dc6 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -512,7 +512,7 @@ class TestCase(object):
the specified test method's docstring.
"""
doc = self._testMethodDoc
- return doc and doc.split("\n")[0].strip() or None
+ return doc.strip().split("\n")[0].strip() if doc else None
def id(self):