summaryrefslogtreecommitdiffstats
path: root/Modules/selectmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
* Issue #17919: Fixed integer overflow in the eventmask parameter.Serhiy Storchaka2013-12-141-7/+25
* Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.Serhiy Storchaka2013-12-131-3/+2
* Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-1/+1
* Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-201-0/+13
* Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bitCharles-Francois Natali2013-05-061-7/+28
* Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL.Charles-François Natali2013-01-191-2/+2
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-4/+8
* Issue #16230: Fix a crash in select.select() when one the lists changes size ...Antoine Pitrou2012-11-011-4/+1
* Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-8/+1
* Fix closes issue 11568 - update select.epoll.register docstring with mention ...Senthil Kumaran2011-06-271-1/+1
* issue 10295Kristján Valur Jónsson2010-11-031-1/+1
* Merged revisions 85554 via svnmerge fromR. David Murray2010-10-161-0/+4
* Merged revisions 83536,83546-83548,83550,83554-83555,83558,83563,83565,83571,...Georg Brandl2010-08-021-3/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1219/+1219
* add spaceBenjamin Peterson2010-04-151-1/+1
* remove a optimization that resulted in unexpected behavior #8929Benjamin Peterson2010-04-061-8/+0
* #6544: fix refleak in kqueue, occurring in certain error conditions.Georg Brandl2010-02-231-16/+15
* #7595: fix typo in argument default constant.Georg Brandl2009-12-291-1/+1
* Issue #7211: Allow 64-bit values for the `ident` and `data` fields of keventAntoine Pitrou2009-11-041-12/+42
* #5910: fix kqueue for calls with more than one event.Georg Brandl2009-07-161-3/+4
* #6416: Fix compilation of the select module on Windows, as well as test_subpr...Amaury Forgeot d'Arc2009-07-091-0/+2
* Adds the select.PIPE_BUF attribute to expose the system constant.Gregory P. Smith2009-07-031-0/+2
* #3852: fix some select.kqueue and kevent docs.Georg Brandl2008-09-211-1/+1
* Issue #2620: Overflow checking when allocating or reallocating memoryGregory P. Smith2008-07-221-1/+3
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Fix and simplify error handling, silencing a compiler warning.Georg Brandl2008-03-261-7/+4
* Minor docstring typosAndrew M. Kuchling2008-03-261-5/+5
* Applied patch #1657 epoll and kqueue wrappers for the select moduleChristian Heimes2008-03-211-12/+1163
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Patch #1516912: improve Modules support for OpenVMS.Neal Norwitz2006-07-101-9/+9
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-1/+1
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-19/+8
* Patch 1471761 - test for broken poll at runtimeRonald Oussoren2006-04-231-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
* select.select() now accepts a sequence (as defined by PySequence_Fast()) forBrett Cannon2003-09-101-18/+18
* SF bug 684667: Modules/selectmodule.c returns NULL without exception set.Tim Peters2003-02-111-1/+1
* Don't use PyNumber_Float() since it's is nearly useless. Instead, rely onNeil Schemenauer2002-11-181-4/+2
* Use PyInt_AsLong instead of PyInt_AS_LONG after the call toWalter Dörwald2002-11-121-1/+1
* I did fix too much - including winsock.h is sufficient.Thomas Heller2002-09-241-1/+1
* On Windows, call WSAGetLastError() to retrieve the error number.Thomas Heller2002-09-241-1/+7
* SF patch #577031, remove PyArg_Parse() since it's deprecatedNeal Norwitz2002-07-281-2/+14
* Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." linkMark Hammond2002-07-231-1/+1