summaryrefslogtreecommitdiffstats
path: root/Modules/selectmodule.c
Commit message (Expand)AuthorAgeFilesLines
* struct timeval.tv_usec is 4 bytes on 64-bit OS X as it should be, butBrett Cannon2012-04-071-1/+5
* Issue #14180: Fix the select module to handle correctly the Windows timevalVictor Stinner2012-03-131-3/+16
* Issue #14180: Fix another typo in kqueue_queue_control()Victor Stinner2012-03-131-1/+1
* Issue #14180: Fix select.select() compilation on BSD and a typo in kqueue_que...Victor Stinner2012-03-131-2/+4
* Close #14180: Factorize code to convert a number of seconds to time_t, timeva...Victor Stinner2012-03-131-32/+7
* try to always use the old APIBenjamin Peterson2011-12-271-4/+5
* fix for old kernels which don't have epoll_create1Benjamin Peterson2011-12-271-3/+9
* add a flags parameter to select.epollBenjamin Peterson2011-12-271-19/+15
* Issue #6397: Support '/dev/poll' polling objects in select module, under Sola...Jesus Cea2011-11-141-0/+370
* PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-16/+13
* Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-8/+1
|\
| * Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-8/+1
* | merge 3.2Benjamin Peterson2011-06-271-1/+1
|\ \ | |/
| * Fix closes issue 11568 - update select.epoll.register docstring with mention ...Senthil Kumaran2011-06-271-1/+1
* | Issue #11757: select.select() now raises ValueError when a negative timeoutAntoine Pitrou2011-04-091-0/+5
|/
* Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-2/+1
* #9862: On AIX PIPE_BUF is broken. Make it 512.R. David Murray2010-10-151-0/+4
* #6867: epoll.register() returns None.Georg Brandl2010-08-021-3/+2
* Merged revisions 79894-79895,80098,80120 via svnmerge fromBenjamin Peterson2010-06-271-1/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1243/+1243
* Merged revisions 79866-79867 via svnmerge fromBenjamin Peterson2010-04-061-8/+0
* Merged revisions 78101,78115,78117,78182,78188,78245,78386,78496 via svnmerge...Georg Brandl2010-03-141-16/+15
* Merged revisions 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,...Benjamin Peterson2009-12-311-1/+1
* Merged revisions 76108 via svnmerge fromAntoine Pitrou2009-11-041-13/+43
* Merged revisions 73995,74002,74005,74007-74008,74011,74019-74023 via svnmerge...Alexandre Vassalotti2009-07-171-3/+4
* Merged revisions 73916 via svnmerge fromAmaury Forgeot d'Arc2009-07-091-0/+2
* Merged revisions 73818 via svnmerge fromGregory P. Smith2009-07-041-0/+2
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-4/+4
* Replace PyNumber_Int with PyNumber_Long.Mark Dickinson2009-01-171-1/+1
* Merged revisions 66508,66510,66512-66513,66523-66526,66529-66530,66532,66535,...Benjamin Peterson2008-09-221-1/+1
* Merged revisions 65182 via svnmerge fromGeorg Brandl2008-07-231-1/+3
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-8/+17
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-6/+20
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,...Christian Heimes2008-03-261-12/+9
* Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,...Christian Heimes2008-03-221-12/+1163
* Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...Christian Heimes2008-01-041-0/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-8/+8
* Remove support for BeOSSkip Montanaro2007-08-171-5/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-10/+10
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-19/+8
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-17/+66
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxintNeal Norwitz2005-11-031-0/+2
* [Bug #923315] Produce correct result on AIXAndrew M. Kuchling2004-08-071-1/+5
* Added configure check for broken poll() on some unix systems (MacOS X 10.3)Nicholas Bastin2004-03-211-6/+6
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-2/+2