summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-07-03 20:48:31 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-07-03 20:48:31 (GMT)
commit9d36fd2acbe618796ecfcb1dd6cb04e9d0f44c8f (patch)
tree0cde3464e418323eae7aa540fa7e7b049c8bed5e /Modules
parent9ad7bbc6370e370b3da7c60cc1ca74774d11957c (diff)
downloadcpython-9d36fd2acbe618796ecfcb1dd6cb04e9d0f44c8f.zip
cpython-9d36fd2acbe618796ecfcb1dd6cb04e9d0f44c8f.tar.gz
cpython-9d36fd2acbe618796ecfcb1dd6cb04e9d0f44c8f.tar.bz2
Adds the select.PIPE_BUF attribute to expose the system constant.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/selectmodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 2638bdc..a405812 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -1746,6 +1746,8 @@ initselect(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()) {