Author: georg.brandl
Date: Thu Nov  1 21:55:43 2007
New Revision: 58754

Modified:
   python/branches/py3k/Doc/c-api/abstract.rst
Log:
Remove duplicate entry for PyObject_AsFileDescriptor. (Really, this time.)


Modified: python/branches/py3k/Doc/c-api/abstract.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/abstract.rst (original)
+++ python/branches/py3k/Doc/c-api/abstract.rst Thu Nov  1 21:55:43 2007
@@ -325,14 +325,6 @@
    equivalent of the Python statement ``del o[key]``.
 
 
-.. cfunction:: int PyObject_AsFileDescriptor(PyObject *o)
-
-   Derives a file descriptor from a Python object.  If the object is an 
integer or
-   long integer, its value is returned.  If not, the object's :meth:`fileno` 
method
-   is called if it exists; the method must return an integer or long integer, 
which
-   is returned as the file descriptor value.  Returns ``-1`` on failure.
-
-
 .. cfunction:: PyObject* PyObject_Dir(PyObject *o)
 
    This is equivalent to the Python expression ``dir(o)``, returning a 
(possibly
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to