1. e6a55dd bpo-29874: fix INCREF for possible NULL values in select_select() (GH-758) by Xiang Zhang · 7 years ago
  2. 977be3e Issue #23652: Make the select module compile against LSB headers. by Zachary Ware · 9 years ago
  3. 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  4. a92cc91 Issue #17919: Fixed integer overflow in the eventmask parameter. by Serhiy Storchaka · 11 years ago
  5. 17f22c9 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. by Serhiy Storchaka · 11 years ago
  6. 42831fe Issue #11973: Fix a problem in kevent. The flags and fflags fields are now by Christian Heimes · 11 years ago
  7. c360389 Issue #8865: Concurrent invocation of select.poll.poll() now raises a by Serhiy Storchaka · 11 years ago
  8. 880359c Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit by Charles-Francois Natali · 11 years ago
  9. a41cf29 Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. by Charles-François Natali · 12 years ago
  10. 74f49ab Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  11. 0552fc2 Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
  12. fda7b37 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  13. 2bd9100 Fix closes issue 11568 - update select.epoll.register docstring with mention of correct behavior. by Senthil Kumaran · 13 years ago
  14. f6f3c4a issue 10295 Make selectmodule.c use winsock2 like socketmodule does. by Kristján Valur Jónsson · 14 years ago
  15. 1d9d16e Merged revisions 85554 via svnmerge from by R. David Murray · 14 years ago
  16. 7d4bfb3 Merged revisions 83536,83546-83548,83550,83554-83555,83558,83563,83565,83571,83574-83575 via svnmerge from by Georg Brandl · 14 years ago
  17. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  18. b7b7c77 add space by Benjamin Peterson · 14 years ago
  19. 3a1dfa2 remove a optimization that resulted in unexpected behavior #8929 by Benjamin Peterson · 14 years ago
  20. ea370a9 #6544: fix refleak in kqueue, occurring in certain error conditions. by Georg Brandl · 15 years ago
  21. fa1ffb6 #7595: fix typo in argument default constant. by Georg Brandl · 15 years ago
  22. 323b9da Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent by Antoine Pitrou · 15 years ago
  23. d77faaf #5910: fix kqueue for calls with more than one event. by Georg Brandl · 15 years ago
  24. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 15 years ago
  25. 9d36fd2 Adds the select.PIPE_BUF attribute to expose the system constant. by Gregory P. Smith · 15 years ago
  26. 2f3bd83 #3852: fix some select.kqueue and kevent docs. by Georg Brandl · 16 years ago
  27. 0470bab Issue #2620: Overflow checking when allocating or reallocating memory by Gregory P. Smith · 16 years ago
  28. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  29. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  30. 018a362 Fix and simplify error handling, silencing a compiler warning. by Georg Brandl · 16 years ago
  31. a8c3f2b Minor docstring typos by Andrew M. Kuchling · 16 years ago
  32. 0e9ab5f Applied patch #1657 epoll and kqueue wrappers for the select module by Christian Heimes · 16 years ago
  33. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  34. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  35. 2a30cd0 Patch #1516912: improve Modules support for OpenVMS. by Neal Norwitz · 18 years ago
  36. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  37. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  38. 32fd16e Patch 1471761 - test for broken poll at runtime by Ronald Oussoren · 18 years ago
  39. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  40. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  41. 0f46bbf Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint by Neal Norwitz · 19 years ago
  42. e5dd162 [Bug #923315] Produce correct result on AIX by Andrew M. Kuchling · 20 years ago
  43. e62c5c8 Added configure check for broken poll() on some unix systems (MacOS X 10.3) by Nicholas Bastin · 20 years ago
  44. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  45. 62dba4c select.select() now accepts a sequence (as defined by PySequence_Fast()) for by Brett Cannon · 21 years ago
  46. 5f322d3 SF bug 684667: Modules/selectmodule.c returns NULL without exception set. by Tim Peters · 22 years ago
  47. 47ec6c0 Don't use PyNumber_Float() since it's is nearly useless. Instead, rely on by Neil Schemenauer · 22 years ago
  48. 08c4cc4 Use PyInt_AsLong instead of PyInt_AS_LONG after the call to by Walter Dörwald · 22 years ago
  49. 7bdabe6 I did fix too much - including winsock.h is sufficient. by Thomas Heller · 22 years ago
  50. 106f4c7 On Windows, call WSAGetLastError() to retrieve the error number. by Thomas Heller · 22 years ago
  51. 77c72bb SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 22 years ago
  52. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  53. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
  54. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  55. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  56. 3e12905 Remove unused static function by Neal Norwitz · 22 years ago
  57. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  58. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 23 years ago
  59. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  60. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  61. a0dfc85 Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) by Guido van Rossum · 23 years ago
  62. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  63. 4b046c2 Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out it by Tim Peters · 23 years ago
  64. 2f70455 Fixed a couple of minor formatting nits where lines were > 79 columns wide. by Barry Warsaw · 23 years ago
  65. b44740f select_select(): Closing bug #448351 the easy way, i.e. by changing by Barry Warsaw · 23 years ago
  66. dff3a37 Make more warnings go away on the SGI compiler. by Fred Drake · 23 years ago
  67. 737fbb3 [Bug #438050] by Andrew M. Kuchling · 23 years ago
  68. 7b87f85 Add :method info to the PyArg_ParseTuple() format strings for poll objects. by Fred Drake · 23 years ago
  69. 1ca8bb3 RISCOS changes by dschwertberger by Guido van Rossum · 24 years ago
  70. d92dfe0 SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512. by Tim Peters · 24 years ago
  71. 36d97eb Add #ifdef's for platforms that don't have the constants POLLRDNORM and by Andrew M. Kuchling · 24 years ago
  72. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  73. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  74. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  75. 239f836 Not every OS that support poll seems to support POLLMSG. by Sjoerd Mullender · 24 years ago
  76. cf96dc8 Add interface to poll() system call (SF patch #100852) by Andrew M. Kuchling · 24 years ago
  77. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  78. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
  79. ba48a3f Remove unused variable. by Thomas Wouters · 24 years ago
  80. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  81. 9f28a03 Use PyObject_AsFileDescriptor by Andrew M. Kuchling · 24 years ago
  82. e4b4863 One more include of limits.h (possibly to be moved elsewhere when there is by Jack Jansen · 24 years ago
  83. 41c36ff ANSI-fication by Peter Schneider-Kamp · 24 years ago
  84. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  85. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  86. 3262e16 Trent Mick: by Guido van Rossum · 24 years ago
  87. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  88. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
  89. 947a0fa According to Ron Bickers, and with apparent approval of Chris by Guido van Rossum · 25 years ago
  90. ff7e83d Patch by Mark Hammond to avoid certain header files on Windows/CE. by Guido van Rossum · 25 years ago
  91. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  92. bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  93. d20781b On Windows, put the select file descriptor arrays on the heap. by Guido van Rossum · 26 years ago
  94. 1d8fb2d Added doc strings. by Guido van Rossum · 26 years ago
  95. 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
  96. 0cb96de Apply two changes, systematically: by Guido van Rossum · 27 years ago
  97. 529fcfe list2set(): correct return value (an int, not a PyObject*). by Barry Warsaw · 28 years ago
  98. 24c4b3d list2set(): PyList_GetItem could fail. by Barry Warsaw · 28 years ago
  99. c1cb360 Reworked to eliminate all potential memory problems, including by Barry Warsaw · 28 years ago
  100. e4ac0aa Several changes... Guido *please* take a look! by Barry Warsaw · 28 years ago