[Python-checkins] r82095 - python/branches/py3k-signalfd-issue8407/Doc/library/signal.rst

jean-paul.calderone python-checkins at python.org
Sat Jun 19 22:08:54 CEST 2010


Author: jean-paul.calderone
Date: Sat Jun 19 22:08:54 2010
New Revision: 82095

Log:
Try this emphasis on SFD_NONBLOCK; also see what :platform: does

Modified:
   python/branches/py3k-signalfd-issue8407/Doc/library/signal.rst

Modified: python/branches/py3k-signalfd-issue8407/Doc/library/signal.rst
==============================================================================
--- python/branches/py3k-signalfd-issue8407/Doc/library/signal.rst	(original)
+++ python/branches/py3k-signalfd-issue8407/Doc/library/signal.rst	Sat Jun 19 22:08:54 2010
@@ -147,7 +147,7 @@
 .. data:: SFD_NONBLOCK
 
    A possible flag in the *flags* parameter to :func:`signalfd` which causes
-   the new file description to be set non-blocking.
+   the new file *description* (**not** *descriptor*) to be set non-blocking.
 
    .. versionadded:: 3.2
 
@@ -268,8 +268,8 @@
 
    Create a new file descriptor on which to receive signals or modify the
    mask of such a file descriptor previously created by this function.
-   Availability: Linux (See the manpage :manpage:`signalfd(2)` for further
-   information).
+   Availability: :platform: Linux (See the manpage :manpage:`signalfd(2)`
+   for further information).
 
    If *fd* is ``-1``, a new file descriptor will be created.  Otherwise,
    *fd* must be a file descriptor previously returned by this function.


More information about the Python-checkins mailing list