diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-12 04:31:25 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-12 04:31:25 +0000 |
commit | 52855452711eb2df1900470d387b58dede3ac941 (patch) | |
tree | be6b2bd2fac48172eed302d9a2f2624c844e2926 /Lib/test/test_pydoc.py | |
parent | 62bdea58c59b4377aaf0c40c9fb7c0db21d4cffd (diff) | |
parent | 4f8aaf644095fef61ba1104af0f07efe2a099079 (diff) | |
download | cpython-52855452711eb2df1900470d387b58dede3ac941.tar.gz cpython-52855452711eb2df1900470d387b58dede3ac941.zip |
Issue #16484: Merge pydoc Windows fixes from 3.5
Diffstat (limited to 'Lib/test/test_pydoc.py')
-rw-r--r-- | Lib/test/test_pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 9a357da59bb..889ce592db8 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -356,7 +356,7 @@ def get_pydoc_html(module): def get_pydoc_link(module): "Returns a documentation web link of a module" dirname = os.path.dirname - basedir = os.path.join(dirname(dirname(__file__))) + basedir = dirname(dirname(__file__)) doc = pydoc.TextDoc() loc = doc.getdocloc(module, basedir=basedir) return loc |