- 329e492 Issue #20656: Restore explicit downcast in select_select(). by Victor Stinner · 11 years ago
- 5a8e579 Close #20656: Fix select.select() on OpenBSD 64-bit by Victor Stinner · 11 years ago
- 3c1b379 Issue #20320: select.select() and select.kqueue.control() now round the timeout by Victor Stinner · 11 years ago
- dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- dcd9740 Issue #20452: select and selectors round (again) timeout away from zero for by Victor Stinner · 11 years ago
- 38c72bd (Merge 3.3) Issue #20311: Revert 033137c12d88 (02f9db3e684e), by Victor Stinner · 11 years ago
- 9332096 Issue #20311: Revert 033137c12d88, select.epoll.poll() rounds again the timeout by Victor Stinner · 11 years ago
- 09354fd (Merge 3.3) Issue #20311: select.epoll.poll() now rounds the timeout away from by Victor Stinner · 11 years ago
- 665486e Issue #20311: select.epoll.poll() now rounds the timeout away from zero, by Victor Stinner · 11 years ago
- af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
- 03241e8 Issue #17919: Fixed integer overflow in the eventmask parameter. by Serhiy Storchaka · 11 years ago
- 5da107a Issue #17919: Fixed integer overflow in the eventmask parameter. by Serhiy Storchaka · 11 years ago
- cb1c4c8 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. by Serhiy Storchaka · 11 years ago
- 3ad2d70 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. by Serhiy Storchaka · 11 years ago
- ee07b94 Fix indentation of switch cases. by Guido van Rossum · 11 years ago
- 7613542 Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() error by Victor Stinner · 11 years ago
- d72fe89 select.epoll.fromfd(fd) must be not change the inheritable flag of the file by Victor Stinner · 11 years ago
- daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
- 9dd279a Issue #11973: Fix a problem in kevent. The flags and fflags fields are now by Christian Heimes · 11 years ago
- f1fe159 Issue #11973: Fix a problem in kevent. The flags and fflags fields are now by Christian Heimes · 11 years ago
- a93bf7b Fix devpoll_dealloc(). by Richard Oudkerk · 11 years ago
- 168d59b Move definition of devpoll_internal_close() before devpoll_close(). by Richard Oudkerk · 11 years ago
- 069d65c Fix compilation of select module on Solaris. by Richard Oudkerk · 11 years ago
- 13423c3 Close #18794: Add a fileno() method and a closed attribute to select.devpoll by Victor Stinner · 11 years ago
- 5617df1 Issue #8865: Concurrent invocation of select.poll.poll() now raises a by Serhiy Storchaka · 11 years ago
- b1973c2 Issue #8865: Concurrent invocation of select.poll.poll() now raises a by Serhiy Storchaka · 11 years ago
- bbf8ce5 Issue #18408: Fix select.select() to handle PyList_New() failure (MemoryError) by Victor Stinner · 11 years ago
- 74ca886 Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() by Charles-Francois Natali · 11 years ago
- b1294fa Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit by Charles-Francois Natali · 11 years ago
- 002a77d Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit by Charles-Francois Natali · 11 years ago
- c07fcbb Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. by Charles-François Natali · 12 years ago
- 95195b3 Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. by Charles-François Natali · 12 years ago
- 986a56c Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. by Charles-François Natali · 12 years ago
- 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- a6ebb2d Issue #16876: Revert be8e6b81284e, which wasn't thread-safe: wait until a by Charles-François Natali · 12 years ago
- f424f38 Issue #16876: Optimize epoll.poll() by keeping a per-instance epoll events by Charles-François Natali · 12 years ago
- 09bb89b Issue #16488: epoll() objects now support the `with` statement. by Antoine Pitrou · 12 years ago
- 787fbe9 Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
- 0168d3d Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
- e4ad37e Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
- 14c81ab #16135: Removal of OS/2 support (Modules/*) by Jesus Cea · 12 years ago
- 6f3e5e4 remove useless and defined initialization (closes #15921) by Benjamin Peterson · 12 years ago
- 024abca MERGE: Closes #15395: memory leaks in selectmodule.c by Jesus Cea · 12 years ago
- 62a5c32 Closes #15395: memory leaks in selectmodule.c by Jesus Cea · 12 years ago
- 8798ad3 struct timeval.tv_usec is 4 bytes on 64-bit OS X as it should be, but by Brett Cannon · 13 years ago
- b2a3773 Issue #14180: Fix the select module to handle correctly the Windows timeval by Victor Stinner · 13 years ago
- d528b01 Issue #14180: Fix another typo in kqueue_queue_control() by Victor Stinner · 13 years ago
- d327f9d Issue #14180: Fix select.select() compilation on BSD and a typo in kqueue_queue_control() by Victor Stinner · 13 years ago
- 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 13 years ago
- 83251c1 try to always use the old API by Benjamin Peterson · 13 years ago
- 95c1662 fix for old kernels which don't have epoll_create1 by Benjamin Peterson · 13 years ago
- 2fb9ae9 add a flags parameter to select.epoll by Benjamin Peterson · 13 years ago
- d8b9ae6 Issue #6397: Support '/dev/poll' polling objects in select module, under Solaris & derivatives. by Jesus Cea · 13 years ago
- 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
- ac7e9e0 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
- aa26b27 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
- dd6098b merge 3.2 by Benjamin Peterson · 13 years ago
- 7d80bd1 Fix closes issue 11568 - update select.epoll.register docstring with mention of correct behavior. by Senthil Kumaran · 13 years ago
- 131a641 Issue #11757: select.select() now raises ValueError when a negative timeout by Antoine Pitrou · 14 years ago
- 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
- e16cda9 #9862: On AIX PIPE_BUF is broken. Make it 512. by R. David Murray · 14 years ago
- 222569d #6867: epoll.register() returns None. by Georg Brandl · 14 years ago
- e0edb8b Merged revisions 79894-79895,80098,80120 via svnmerge from by Benjamin Peterson · 14 years ago
- f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
- d856ab6 Merged revisions 79866-79867 via svnmerge from by Benjamin Peterson · 15 years ago
- c0e22b7 Merged revisions 78101,78115,78117,78182,78188,78245,78386,78496 via svnmerge from by Georg Brandl · 15 years ago
- 1baf465 Merged revisions 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,77096,77120,77126,77155 via svnmerge from by Benjamin Peterson · 15 years ago
- d83f1e6 Merged revisions 76108 via svnmerge from by Antoine Pitrou · 15 years ago
- e52e378 Merged revisions 73995,74002,74005,74007-74008,74011,74019-74023 via svnmerge from by Alexandre Vassalotti · 15 years ago
- ace3102 Merged revisions 73916 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
- b970b86 Merged revisions 73818 via svnmerge from by Gregory P. Smith · 15 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- 17c7cd8 Replace PyNumber_Int with PyNumber_Long. by Mark Dickinson · 16 years ago
- 9bc9351 Merged revisions 66508,66510,66512-66513,66523-66526,66529-66530,66532,66535,66538,66544,66546 via svnmerge from by Benjamin Peterson · 16 years ago
- d492ad8 Merged revisions 65182 via svnmerge from by Georg Brandl · 16 years ago
- e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- f6cd967 Merged revisions 61913,61915-61916,61918-61919,61922-61926,61928-61929,61931,61935,61938,61943 via svnmerge from by Christian Heimes · 17 years ago
- 4fbc72b Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,61714-61716,61718-61722 via svnmerge from by Christian Heimes · 17 years ago
- c36625b Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word by Christian Heimes · 17 years ago
- 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
- 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
- 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- 0f46bbf Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint by Neal Norwitz · 19 years ago
- e5dd162 [Bug #923315] Produce correct result on AIX by Andrew M. Kuchling · 20 years ago
- e62c5c8 Added configure check for broken poll() on some unix systems (MacOS X 10.3) by Nicholas Bastin · 21 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
- 62dba4c select.select() now accepts a sequence (as defined by PySequence_Fast()) for by Brett Cannon · 21 years ago
- 5f322d3 SF bug 684667: Modules/selectmodule.c returns NULL without exception set. by Tim Peters · 22 years ago
- 47ec6c0 Don't use PyNumber_Float() since it's is nearly useless. Instead, rely on by Neil Schemenauer · 22 years ago