]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/compact-docstrings/etc/before.py
Add 'packages/compact-docstrings/' from commit '7ada669605c4e2a9a00fa6d03da7176f2c6e3297'
[gnu-emacs-elpa] / packages / compact-docstrings / etc / before.py
diff --git a/packages/compact-docstrings/etc/before.py b/packages/compact-docstrings/etc/before.py
new file mode 100644 (file)
index 0000000..66bebaa
--- /dev/null
@@ -0,0 +1,14 @@
+# With regular docstrings
+def complex(real=0.0, imag=0.0):
+    """Form a complex number.
+
+    Keyword arguments:
+    real -- the real part (default 0.0)
+    imag -- the imaginary part (default 0.0)
+
+    Some more description text, artificially
+    lengthened to make it span two lines.
+
+    Another paragraph.
+    """
+    pass