Skip to content

bpo-39654: pyclbr: remove old references to class browser & add expla… #18528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Doc/library/pyclbr.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:mod:`pyclbr` --- Python class browser support
==============================================
:mod:`pyclbr` --- Python module browser support
===============================================

.. module:: pyclbr
:synopsis: Supports information extraction for a Python class browser.
:synopsis: Supports information extraction for a Python module browser.

.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>

Expand All @@ -29,6 +29,9 @@ modules.
*path* is a sequence of directory paths prepended to ``sys.path``,
which is used to locate the module source code.

This function is the original interface and is only kept for back
compatibility. It returns a filtered version of the following.


.. function:: readmodule_ex(module, path=None)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
In pyclbr doc, update 'class' to 'module' where appropriate and add readmodule comment.
Patch by Hakan Çelik.