mirror of
https://github.com/python/cpython.git
synced 2025-08-18 15:51:23 +00:00
Merged revisions 79518 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79518 | brian.curtin | 2010-03-30 22:10:21 -0500 (Tue, 30 Mar 2010) | 2 lines Fix #8225. xml.etree was displaying an incorrect link when viewed in help. ........
This commit is contained in:
parent
65014f151a
commit
a5d9679ef3
2 changed files with 8 additions and 1 deletions
|
@ -356,7 +356,8 @@ class Doc:
|
||||||
'marshal', 'posix', 'signal', 'sys',
|
'marshal', 'posix', 'signal', 'sys',
|
||||||
'thread', 'zipimport') or
|
'thread', 'zipimport') or
|
||||||
(file.startswith(basedir) and
|
(file.startswith(basedir) and
|
||||||
not file.startswith(os.path.join(basedir, 'site-packages'))))):
|
not file.startswith(os.path.join(basedir, 'site-packages')))) and
|
||||||
|
object.__name__ not in ('xml.etree')):
|
||||||
if docloc.startswith("http://"):
|
if docloc.startswith("http://"):
|
||||||
docloc = "%s/%s" % (docloc.rstrip("/"), object.__name__)
|
docloc = "%s/%s" % (docloc.rstrip("/"), object.__name__)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -7,6 +7,7 @@ import re
|
||||||
import pydoc
|
import pydoc
|
||||||
import inspect
|
import inspect
|
||||||
import unittest
|
import unittest
|
||||||
|
import xml.etree
|
||||||
import test.test_support
|
import test.test_support
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from test.test_support import TESTFN, forget, rmtree, EnvironmentVarGuard
|
from test.test_support import TESTFN, forget, rmtree, EnvironmentVarGuard
|
||||||
|
@ -236,6 +237,11 @@ class PyDocDocTest(unittest.TestCase):
|
||||||
print_diffs(expected_text, result)
|
print_diffs(expected_text, result)
|
||||||
self.fail("outputs are not equal, see diff above")
|
self.fail("outputs are not equal, see diff above")
|
||||||
|
|
||||||
|
def test_issue8225(self):
|
||||||
|
# Test issue8225 to ensure no doc link appears for xml.etree
|
||||||
|
result, doc_loc = get_pydoc_text(xml.etree)
|
||||||
|
self.assertEqual(doc_loc, "", "MODULE DOCS incorrectly includes a link")
|
||||||
|
|
||||||
def test_not_here(self):
|
def test_not_here(self):
|
||||||
missing_module = "test.i_am_not_here"
|
missing_module = "test.i_am_not_here"
|
||||||
result = run_pydoc(missing_module)
|
result = run_pydoc(missing_module)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue