]> granicus.if.org Git - python/commitdiff
Merged revisions 73818 via svnmerge from
authorGregory P. Smith <greg@mad-scientist.com>
Sat, 4 Jul 2009 02:28:47 +0000 (02:28 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sat, 4 Jul 2009 02:28:47 +0000 (02:28 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73818 | gregory.p.smith | 2009-07-03 13:48:31 -0700 (Fri, 03 Jul 2009) | 2 lines

  Adds the select.PIPE_BUF attribute to expose the system constant.
........

Doc/library/select.rst
Modules/selectmodule.c

index 6dbf16f83472f10b29f744f5d6977ae7327fe46d..bffb9cba7581efb8c2d7e2082cd38126cfe53b06 100644 (file)
@@ -94,6 +94,15 @@ The module defines the following:
       library, and does not handle file descriptors that don't originate from
       WinSock.
 
+.. attribute:: select.PIPE_BUF
+
+   Files reported as ready for writing by :func:`select`, :func:`poll` or
+   similar interfaces in this module are guaranteed to not block on a write
+   of up to :const:`PIPE_BUF` bytes.
+   This value is guaranteed by POSIX to be at least 512.
+
+   .. versionadded:: 2.7
+
 
 .. _epoll-objects:
 
index 191296e0d9e9810df7683d599a8941f196eac577..085537513b2c26949508f151f9270716aad86d01 100644 (file)
@@ -1764,6 +1764,8 @@ PyInit_select(void)
        Py_INCREF(SelectError);
        PyModule_AddObject(m, "error", SelectError);
 
+       PyModule_AddIntConstant(m, "PIPE_BUF", PIPE_BUF);
+
 #if defined(HAVE_POLL)
 #ifdef __APPLE__
        if (select_have_broken_poll()) {