File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -39,23 +39,23 @@ PEP 257 is the primary reference for docstrings. (http://www.python.org/dev/peps
3939|One-line docstrings: ::
4040
4141 def kos_root():
42- """Return the pathname of the KOS root directory."""
43- global _kos_root
44- if _kos_root: return _kos_root
45- ...
42+ """Return the pathname of the KOS root directory."""
43+ global _kos_root
44+ if _kos_root: return _kos_root
45+ ...
4646
4747Multi-line docstrings: ::
4848
4949 def complex(real=0.0, imag=0.0):
50- """Form a complex number.
50+ """Form a complex number.
5151
52- Keyword arguments:
53- real -- the real part (default 0.0)
54- imag -- the imaginary part (default 0.0)
52+ Keyword arguments:
53+ real -- the real part (default 0.0)
54+ imag -- the imaginary part (default 0.0)
5555
56- """
57- if imag == 0.0 and real == 0.0: return complex_zero
58- ...
56+ """
57+ if imag == 0.0 and real == 0.0: return complex_zero
58+ ...
5959
6060Sphinx
6161------
You can’t perform that action at this time.
0 commit comments