]> code.delx.au - gnu-emacs-elpa/blob - etc/after.py
Assign copyright to FSF
[gnu-emacs-elpa] / etc / after.py
1 # With compact docstrings
2 def complex(real=0.0, imag=0.0):
3 """Form a complex number.
4
5 Keyword arguments:
6 real -- the real part (default 0.0)
7 imag -- the imaginary part (default 0.0)
8
9 Some more description text, artificially
10 lengthened to make it span two lines.
11
12 Another paragraph.
13 """
14 pass