mirror of
https://github.com/python/cpython.git
synced 2025-09-17 14:16:02 +00:00
Make “pydoc somebuiltin.somemethod” work (#8887)
This commit is contained in:
parent
271208e225
commit
9a528306b9
3 changed files with 29 additions and 8 deletions
13
Lib/pydoc.py
13
Lib/pydoc.py
|
@ -1454,13 +1454,14 @@ def locate(path, forceload=0):
|
||||||
else: break
|
else: break
|
||||||
if module:
|
if module:
|
||||||
object = module
|
object = module
|
||||||
for part in parts[n:]:
|
|
||||||
try: object = getattr(object, part)
|
|
||||||
except AttributeError: return None
|
|
||||||
return object
|
|
||||||
else:
|
else:
|
||||||
if hasattr(__builtin__, path):
|
object = __builtin__
|
||||||
return getattr(__builtin__, path)
|
for part in parts[n:]:
|
||||||
|
try:
|
||||||
|
object = getattr(object, part)
|
||||||
|
except AttributeError:
|
||||||
|
return None
|
||||||
|
return object
|
||||||
|
|
||||||
# --------------------------------------- interactive interpreter interface
|
# --------------------------------------- interactive interpreter interface
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
import os.path
|
import sys
|
||||||
import difflib
|
import difflib
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import __builtin__
|
||||||
import re
|
import re
|
||||||
import pydoc
|
import pydoc
|
||||||
import inspect
|
import inspect
|
||||||
|
@ -357,6 +357,23 @@ class TestHelper(unittest.TestCase):
|
||||||
self.assertEqual(sorted(pydoc.Helper.keywords),
|
self.assertEqual(sorted(pydoc.Helper.keywords),
|
||||||
sorted(keyword.kwlist))
|
sorted(keyword.kwlist))
|
||||||
|
|
||||||
|
def test_builtin(self):
|
||||||
|
for name in ('str', 'str.translate', '__builtin__.str',
|
||||||
|
'__builtin__.str.translate'):
|
||||||
|
# test low-level function
|
||||||
|
self.assertIsNotNone(pydoc.locate(name))
|
||||||
|
# test high-level function
|
||||||
|
try:
|
||||||
|
pydoc.render_doc(name)
|
||||||
|
except ImportError:
|
||||||
|
self.fail('finding the doc of {!r} failed'.format(o))
|
||||||
|
|
||||||
|
for name in ('not__builtin__', 'strrr', 'strr.translate',
|
||||||
|
'str.trrrranslate', '__builtin__.strrr',
|
||||||
|
'__builtin__.str.trrranslate'):
|
||||||
|
self.assertIsNone(pydoc.locate(name))
|
||||||
|
self.assertRaises(ImportError, pydoc.render_doc, name)
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
test.test_support.run_unittest(PyDocDocTest,
|
test.test_support.run_unittest(PyDocDocTest,
|
||||||
|
|
|
@ -37,6 +37,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #8887: "pydoc somebuiltin.somemethod" (or help('somebuiltin.somemethod')
|
||||||
|
in Python code) now finds the doc of the method.
|
||||||
|
|
||||||
- Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.
|
- Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.
|
||||||
|
|
||||||
- Issue #12514: Use try/finally to assure the timeit module restores garbage
|
- Issue #12514: Use try/finally to assure the timeit module restores garbage
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue