[Python-checkins] r62393 - python/trunk/Doc/documenting/markup.rst

georg.brandl python-checkins at python.org
Sat Apr 19 19:00:14 CEST 2008


Author: georg.brandl
Date: Sat Apr 19 19:00:14 2008
New Revision: 62393

Log:
:func: et al. should *not* include the parens.


Modified:
   python/trunk/Doc/documenting/markup.rst

Modified: python/trunk/Doc/documenting/markup.rst
==============================================================================
--- python/trunk/Doc/documenting/markup.rst	(original)
+++ python/trunk/Doc/documenting/markup.rst	Sat Apr 19 19:00:14 2008
@@ -319,8 +319,8 @@
 .. describe:: func
 
    The name of a Python function; dotted names may be used.  The role text
-   should include trailing parentheses to enhance readability.  The parentheses
-   are stripped when searching for identifiers.
+   should not include trailing parentheses to enhance readability.  The
+   parentheses are stripped when searching for identifiers.
 
 .. describe:: data
 
@@ -338,7 +338,7 @@
 .. describe:: meth
 
    The name of a method of an object.  The role text should include the type
-   name, method name and the trailing parentheses.  A dotted name may be used.
+   name and the method name.  A dotted name may be used.
 
 .. describe:: attr
 


More information about the Python-checkins mailing list