[Python-checkins] r82958 - python/branches/py3k/Doc/library/select.rst

jean-paul.calderone python-checkins at python.org
Sun Jul 18 18:13:27 CEST 2010


Author: jean-paul.calderone
Date: Sun Jul 18 18:13:27 2010
New Revision: 82958

Log:
There is no method named "register(fd, eventmask)"; fix markup to just indicate this is code.

Modified:
   python/branches/py3k/Doc/library/select.rst

Modified: python/branches/py3k/Doc/library/select.rst
==============================================================================
--- python/branches/py3k/Doc/library/select.rst	(original)
+++ python/branches/py3k/Doc/library/select.rst	Sun Jul 18 18:13:27 2010
@@ -233,7 +233,7 @@
 .. method:: poll.modify(fd, eventmask)
 
    Modifies an already registered fd. This has the same effect as
-   :meth:`register(fd, eventmask)`.  Attempting to modify a file descriptor
+   ``register(fd, eventmask)``.  Attempting to modify a file descriptor
    that was never registered causes an :exc:`IOError` exception with errno
    :const:`ENOENT` to be raised.
 


More information about the Python-checkins mailing list