This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wplappert
Recipients georg.brandl, wplappert
Date 2008-10-22.06:39:13
SpamBayes Score 0.003944043
Marked as misclassified No
Message-id <1224657555.02.0.872283376667.issue4167@psf.upfronthosting.co.za>
In-reply-to
Content
The Inline Markup :const: shows up in the final documentation. Example
can be found on http://docs.python.org/library/select.html :

kevent.fflags¶

    Filter specific flags

    :const:`KQ_FILTER_READ` and :const:`KQ_FILTER_WRITE` filter flags
    Constant 	Meaning
    KQ_NOTE_LOWAT 	low water mark of a socket buffer

    :const:`KQ_FILTER_VNODE` filter flags

It also shows up in the equivalent PDF documentation. The underlying rst
file is library/select.rst, relevant part of source text follows:
   *:const:`KQ_FILTER_READ` and  :const:`KQ_FILTER_WRITE` filter flags*

  
+----------------------------+--------------------------------------------+
   | Constant                   | Meaning                              
     |
  
+============================+============================================+
   | :const:`KQ_NOTE_LOWAT`     | low water mark of a socket buffer    
     |
  
+----------------------------+--------------------------------------------+


   *:const:`KQ_FILTER_VNODE` filter flags*


There is one more occurrance of :const: in
http://docs.python.org/library/cookielib.html:
...
Cookie.is_expired([now=:const:`None`])¶
    True if cookie ...
History
Date User Action Args
2008-10-22 06:39:15wplappertsetrecipients: + wplappert, georg.brandl
2008-10-22 06:39:15wplappertsetmessageid: <1224657555.02.0.872283376667.issue4167@psf.upfronthosting.co.za>
2008-10-22 06:39:14wplappertlinkissue4167 messages
2008-10-22 06:39:13wplappertcreate