1. 8a48808 Merged revisions 79866-79867 via svnmerge from by Benjamin Peterson · 15 years ago
  2. 5a7eca1 Merged revisions 77593,77702-77703,77858,77887,78113-78115,78117,78245,78385-78386,78496,78760,78771-78773,78802 via svnmerge from by Georg Brandl · 15 years ago
  3. b6453a9 Merged revisions 77120,77151,77155,77209,77229,77256,77317,77331,77333,77359-77360,77382,77561,77570 via svnmerge from by Georg Brandl · 15 years ago
  4. f004d9d Merged revisions 73206,73232,73299,73683,74020,74185,74544,74643,74647,74817,74838-74839,74865,74946,75402,75459,75604,75696 via svnmerge from by Georg Brandl · 16 years ago
  5. 2f3bd83 #3852: fix some select.kqueue and kevent docs. by Georg Brandl · 17 years ago
  6. 0470bab Issue #2620: Overflow checking when allocating or reallocating memory by Gregory P. Smith · 17 years ago
  7. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  8. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  9. 018a362 Fix and simplify error handling, silencing a compiler warning. by Georg Brandl · 17 years ago
  10. a8c3f2b Minor docstring typos by Andrew M. Kuchling · 17 years ago
  11. 0e9ab5f Applied patch #1657 epoll and kqueue wrappers for the select module by Christian Heimes · 17 years ago
  12. 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 · 18 years ago
  13. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  14. 2a30cd0 Patch #1516912: improve Modules support for OpenVMS. by Neal Norwitz · 19 years ago
  15. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago
  16. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 19 years ago
  17. 32fd16e Patch 1471761 - test for broken poll at runtime by Ronald Oussoren · 19 years ago
  18. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  19. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  20. 0f46bbf Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint by Neal Norwitz · 20 years ago
  21. e5dd162 [Bug #923315] Produce correct result on AIX by Andrew M. Kuchling · 21 years ago
  22. e62c5c8 Added configure check for broken poll() on some unix systems (MacOS X 10.3) by Nicholas Bastin · 21 years ago
  23. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 22 years ago
  24. 62dba4c select.select() now accepts a sequence (as defined by PySequence_Fast()) for by Brett Cannon · 22 years ago
  25. 5f322d3 SF bug 684667: Modules/selectmodule.c returns NULL without exception set. by Tim Peters · 23 years ago
  26. 47ec6c0 Don't use PyNumber_Float() since it's is nearly useless. Instead, rely on by Neil Schemenauer · 23 years ago
  27. 08c4cc4 Use PyInt_AsLong instead of PyInt_AS_LONG after the call to by Walter Dörwald · 23 years ago
  28. 7bdabe6 I did fix too much - including winsock.h is sufficient. by Thomas Heller · 23 years ago
  29. 106f4c7 On Windows, call WSAGetLastError() to retrieve the error number. by Thomas Heller · 23 years ago
  30. 77c72bb SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 23 years ago
  31. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 23 years ago
  32. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 23 years ago
  33. 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
  34. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  35. 3e12905 Remove unused static function by Neal Norwitz · 23 years ago
  36. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 23 years ago
  37. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 23 years ago
  38. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 24 years ago
  39. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 24 years ago
  40. a0dfc85 Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) by Guido van Rossum · 24 years ago
  41. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 24 years ago
  42. 4b046c2 Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out it by Tim Peters · 24 years ago
  43. 2f70455 Fixed a couple of minor formatting nits where lines were > 79 columns wide. by Barry Warsaw · 24 years ago
  44. b44740f select_select(): Closing bug #448351 the easy way, i.e. by changing by Barry Warsaw · 24 years ago
  45. dff3a37 Make more warnings go away on the SGI compiler. by Fred Drake · 24 years ago
  46. 737fbb3 [Bug #438050] by Andrew M. Kuchling · 24 years ago
  47. 7b87f85 Add :method info to the PyArg_ParseTuple() format strings for poll objects. by Fred Drake · 24 years ago
  48. 1ca8bb3 RISCOS changes by dschwertberger by Guido van Rossum · 24 years ago
  49. d92dfe0 SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512. by Tim Peters · 25 years ago
  50. 36d97eb Add #ifdef's for platforms that don't have the constants POLLRDNORM and by Andrew M. Kuchling · 25 years ago
  51. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 25 years ago
  52. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  53. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 25 years ago
  54. 239f836 Not every OS that support poll seems to support POLLMSG. by Sjoerd Mullender · 25 years ago
  55. cf96dc8 Add interface to poll() system call (SF patch #100852) by Andrew M. Kuchling · 25 years ago
  56. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 25 years ago
  57. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 25 years ago
  58. ba48a3f Remove unused variable. by Thomas Wouters · 25 years ago
  59. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 25 years ago
  60. 9f28a03 Use PyObject_AsFileDescriptor by Andrew M. Kuchling · 25 years ago
  61. e4b4863 One more include of limits.h (possibly to be moved elsewhere when there is by Jack Jansen · 25 years ago
  62. 41c36ff ANSI-fication by Peter Schneider-Kamp · 25 years ago
  63. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
  64. fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago
  65. 3262e16 Trent Mick: by Guido van Rossum · 25 years ago
  66. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
  67. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
  68. 947a0fa According to Ron Bickers, and with apparent approval of Chris by Guido van Rossum · 26 years ago
  69. ff7e83d Patch by Mark Hammond to avoid certain header files on Windows/CE. by Guido van Rossum · 26 years ago
  70. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 27 years ago
  71. bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 27 years ago
  72. d20781b On Windows, put the select file descriptor arrays on the heap. by Guido van Rossum · 27 years ago
  73. 1d8fb2d Added doc strings. by Guido van Rossum · 27 years ago
  74. 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 28 years ago
  75. 0cb96de Apply two changes, systematically: by Guido van Rossum · 28 years ago
  76. 529fcfe list2set(): correct return value (an int, not a PyObject*). by Barry Warsaw · 29 years ago
  77. 24c4b3d list2set(): PyList_GetItem could fail. by Barry Warsaw · 29 years ago
  78. c1cb360 Reworked to eliminate all potential memory problems, including by Barry Warsaw · 29 years ago
  79. e4ac0aa Several changes... Guido *please* take a look! by Barry Warsaw · 29 years ago
  80. 3727317 Add ``extern void bzero();'' for SGI, to keep gcc -Wall happy. by Guido van Rossum · 29 years ago
  81. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 29 years ago
  82. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 29 years ago
  83. 6f489d9 Slightly different Windows ifdefs by Guido van Rossum · 29 years ago
  84. 4f0fbf8 Yet another pass at fd2obj -- this time for Windows by Guido van Rossum · 29 years ago
  85. 07432c0 fix subtle refcnt bug by Guido van Rossum · 30 years ago
  86. 524b588 Added 1995 to copyright message. by Guido van Rossum · 31 years ago
  87. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 31 years ago
  88. 78ed420 Fixed a couple of bugs: getargs doesn't use % escapes, and seconds by Sjoerd Mullender · 32 years ago
  89. c7a2270 * selectmodule.c (select_select): timeout argument may be None with same by Guido van Rossum · 32 years ago
  90. a849b83 * selectmodule.c: fix (another!) two memory leaks -- this time in list2set by Guido van Rossum · 32 years ago
  91. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 32 years ago
  92. 6f5afc9 * ceval.c: ifdef out the last argument passing compat hack. by Guido van Rossum · 33 years ago
  93. de126a6 Replaced max=-1 by max = -1. by Guido van Rossum · 33 years ago
  94. ff4949e * Makefile: cosmetics by Guido van Rossum · 33 years ago
  95. 4fbf798 * myselect.h: bzero -> memset by Guido van Rossum · 33 years ago
  96. 9d47992 Use "myselect.h" as intended. by Guido van Rossum · 33 years ago
  97. ed233a5 Changes for new UNIX-specific built-in module 'select' and new header for by Guido van Rossum · 33 years ago