Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
35 lines (28 loc) · 1.44 KB

File metadata and controls

35 lines (28 loc) · 1.44 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE qhelp PUBLIC
"-//Semmle//qhelp//EN"
"qhelp.dtd">
<qhelp>
<overview>
<p>This metric measures the percentage of lines in a file that contain a docstring. Note that this
metric ignores comments.
</p><p>Docstrings are a good way to associate documentation with a specific object in Python. For public
modules, functions, classes and methods docstrings are the preferred method of documentation because
the information can be inspected by the program at runtime, for example, as an interactive help system
or as metadata for a function.</p>
<p>Having a low percentage of docstrings is often an indication that a file has insufficient
documentation. However, the value for the related metric "Percentage of comments" should also be
considered because packages and non-public methods may be documented using comments. Undocumented
code is difficult to understand, modify, and reuse.</p>
</overview>
<recommendation>
<p>Add documentation to files with a low docstring ratio. It is most useful to start documenting
the public functions first.</p>
</recommendation>
<references>
<li>Python for Beginners: <a href="http://www.pythonforbeginners.com/basics/python-docstrings/">
Python Docstrings</a>.</li>
<li>Python PEP 8: <a href="http://www.python.org/dev/peps/pep-0008/#documentation-strings">Documentation
Strings</a>.</li>
<li>Python PEP 257: <a href="http://www.python.org/dev/peps/pep-0257/">Docstring Conventions</a>.</li>
</references>
</qhelp>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.