1. 66078ac Issue #25002: Back out asyncore/asynchat deprecation. by Guido van Rossum · 8 years ago
  2. 16591f4 Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta. by Guido van Rossum · 8 years ago
  3. 10108a7 Issue #27355: Removed support for Windows CE. It was never finished, by Larry Hastings · 8 years ago
  4. e19558a Add a source parameter to warnings.warn() by Victor Stinner · 8 years ago
  5. 3c7d6e0 Issue #23485: select.poll.poll() is now retried when interrupted by a signal by Victor Stinner · 9 years ago
  6. f70e1ca Issue #23485: select.select() is now retried automatically with the recomputed by Victor Stinner · 9 years ago
  7. df1b699 Issue #22823: Use set literals instead of creating a set from a list by Raymond Hettinger · 10 years ago
  8. 1db9e7b Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and by Victor Stinner · 10 years ago
  9. 521e586 Issue #22032: __qualname__ instead of __name__ is now always used to format by Serhiy Storchaka · 10 years ago
  10. a81088a (Merge 3.4) Issue #11453: asyncore: emit a ResourceWarning when an unclosed by Victor Stinner · 10 years ago
  11. 4d4c69d Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper by Victor Stinner · 10 years ago
  12. 8af740c fix isuse #13248: remove previously deprecated asyncore.dispatcher __getattr__ cheap inheritance hack. by Giampaolo Rodola' · 10 years ago
  13. a4c377c Do not raise exception on close() on account of socket attribute still being None: by Giampaolo Rodola' · 11 years ago
  14. fe22dca Issue #16787: Increase asyncore and asynchat default output buffers size, to by Charles-François Natali · 11 years ago
  15. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 11 years ago
  16. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 11 years ago
  17. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 11 years ago
  18. 3539ef3 merge 79422b3684f1 in 3.3 branch (issue 10340) by Giampaolo Rodola' · 12 years ago
  19. 350c94b fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect. by Giampaolo Rodola' · 12 years ago
  20. 7941736 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  21. 2a88641 Fix issue #13694: asynchronous connect in asyncore.dispatcher does not set addr. by Giampaolo Rodola' · 12 years ago
  22. 88c2e45 asyncore: POLLERR, POLLHUP and POLLNVAL are ignored when passed as input flag by Charles-François Natali · 13 years ago
  23. 24d659d Use InterruptedError instead of checking for EINTR by Antoine Pitrou · 13 years ago
  24. f64f9e9 Merge - Issue #12502: asyncore: fix polling loop with AF_UNIX sockets. by Charles-François Natali · 13 years ago
  25. 1f0ccfa Merge - Issue #12502: asyncore: fix polling loop with AF_UNIX sockets. by Charles-François Natali · 13 years ago
  26. 00a4286 Merged revisions 88726 via svnmerge from by Giampaolo Rodolà · 13 years ago
  27. de3dc0f fix attribute error by Giampaolo Rodolà · 13 years ago
  28. 9c9105d Merged revisions 88722 via svnmerge from by Giampaolo Rodolà · 13 years ago
  29. 1bc75c6 Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). by Giampaolo Rodolà · 13 years ago
  30. 103a6d6 Issue 11177: asyncore's create_socket() arguments can now be omitted. by Giampaolo Rodolà · 13 years ago
  31. 900d547 reverting r88395 and r88387 as per http://mail.python.org/pipermail/python-dev/2011-February/108005.html by Giampaolo Rodolà · 13 years ago
  32. 42e0b7f asyncore: introduce a new 'closed' attribute to make sure that dispatcher gets closed only once. by Giampaolo Rodolà · 13 years ago
  33. 73acad1 get rid of asyncore.dispatcher's debug attribute, which is no longer used (assuming it ever was). by Giampaolo Rodolà · 13 years ago
  34. 977c707 Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcher by Giampaolo Rodolà · 14 years ago
  35. 86909b5 rename DISCONNECTED global constant in _DISCONNECTED by Giampaolo Rodolà · 14 years ago
  36. 985b68e Store all errors signaling a disconnection into a global frozenset to save some computation time on recv() and send(). by Giampaolo Rodolà · 14 years ago
  37. 76fc8c7 fix issue 658749: correctly interprets asyncore's windows errors on connect() by Giampaolo Rodolà · 14 years ago
  38. 934abdd fix issue #2944: asyncore doesn't handle connection refused correctly (patch by Alexander Shigin). Merged from 2.7 branch. by Giampaolo Rodolà · 14 years ago
  39. cbb0ae4 #9354: Provide getsockopt() in asyncore file_wrapper(). Patch by Lukas Langa. by Georg Brandl · 14 years ago
  40. 82e02b5 Merged revisions 81294 via svnmerge from by Giampaolo Rodolà · 14 years ago
  41. d61e397 Merged revisions 80880 via svnmerge from by Giampaolo Rodolà · 14 years ago
  42. 8d2dc85 Merged revisions 80875 via svnmerge from by Giampaolo Rodolà · 14 years ago
  43. 0abc64d This fixes bug 5798 on OS X. by Josiah Carlson · 15 years ago
  44. 78532ba Merged revisions 70873,70904,70934,71490 via svnmerge from by R. David Murray · 15 years ago
  45. aae55cb This fixes issue 4332 for Py3k. by Josiah Carlson · 16 years ago
  46. f112369 Merged revisions 65152 via svnmerge from by Georg Brandl · 16 years ago
  47. c31bc9a Fix for AttributeError in test_asynchat. by Josiah Carlson · 16 years ago
  48. 9f2f833 Fixed bugs 760475, 953599, and 1519. This is a translation of changelist 64768 by Josiah Carlson · 16 years ago
  49. d74900e Committing Py3k version of changelist 64080 and 64257, along with updated tests by Josiah Carlson · 16 years ago
  50. 7357c23 Fix exception slicing. by Georg Brandl · 16 years ago
  51. 6464d47 In followup to #1310: Remove more exception indexing. by Georg Brandl · 17 years ago
  52. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  53. df4a743 Fix test_asyncore after merge. It needs to use bytes. by Guido van Rossum · 17 years ago
  54. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  55. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  56. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  57. 4ce69a5 No need to import exceptions, they are builtins by Neal Norwitz · 19 years ago
  58. e47c381 [Bug #1011606] Only check file descriptors for exceptional conditions if the fd is readable or writable by Andrew M. Kuchling · 20 years ago
  59. 9d499f2 Back out patch #982681 by Andrew M. Kuchling · 20 years ago
  60. 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 20 years ago
  61. 5336f8c [Patch #982681] Apply this patch correctly; makes set_reuse_addr() work on Windows by Andrew M. Kuchling · 20 years ago
  62. 0fff6c8 In poll(), check connections for exceptional conditions by Andrew M. Kuchling · 20 years ago
  63. dfa74b9 Return value from .close(); move .set_file up by Andrew M. Kuchling · 20 years ago
  64. 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
  65. 6fe93cd For readable() objects, the previous value of 'flags' was ignored. by Andrew M. Kuchling · 20 years ago
  66. d5cf143 Check in the updated version of patch #957240, which doesn't rely by Michael W. Hudson · 20 years ago
  67. ad21945 Back out #957240. by Martin v. Löwis · 20 years ago
  68. eac324b Patch #957240: Add count parameter to asyncore.loop. by Martin v. Löwis · 20 years ago
  69. 67867ea [Part of patch #909005] Added map parameter for file_dispatcher and dispatcher_with_send by Andrew M. Kuchling · 20 years ago
  70. 174bdbc [Part of patch #909005] Repeating exception changed from 'raise socket.error, why' to just raise. Make use of connect_ex() raise socket.error with 2-tuple instead of just error code by Andrew M. Kuchling · 20 years ago
  71. 419af88 [Part of patch #909005] Remove Mac code for writable by Andrew M. Kuchling · 20 years ago
  72. 0ebbbe3 [Part of patch #909005] Set initial poll flags by Andrew M. Kuchling · 20 years ago
  73. 68522b1 [Part of patch #909005] Use True/False by Andrew M. Kuchling · 20 years ago
  74. 9303777 [Part of patch #909005] Handle POLLPRI flag, and various errors cases. Fixes bug #887279 by Andrew M. Kuchling · 20 years ago
  75. 3dc3484 SF bug #892492: Multiple close() for asyncore.dispatcher. by Raymond Hettinger · 20 years ago
  76. 6c2871e [Part of patch #648322] Delete the poll2() function, which uses a 'poll' extension module that was once part of Medusa. Contributed by Kjetil Jacobsen by Andrew M. Kuchling · 21 years ago
  77. f9ca409 [Bug #758241] When you use asyncore with a non-default map, methods by Andrew M. Kuchling · 21 years ago
  78. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  79. c07fb2f Fix comment typo by Andrew M. Kuchling · 21 years ago
  80. 9a40c1c Add XXX about Winsock error values by Guido van Rossum · 21 years ago
  81. e94d8fa Fix an old bug in poll(). When a signal is handled while we're by Guido van Rossum · 22 years ago
  82. 6d817ad Again, I did check in too many changes. Sorry. by Thomas Heller · 22 years ago
  83. d8ce87a On Windows, select() does not accept empty lists. by Thomas Heller · 22 years ago
  84. 12e9668 Fiddle with compact_traceback(). by Guido van Rossum · 22 years ago
  85. d560ace I don't think it's safe to use map.iteritems() in the various poll by Guido van Rossum · 22 years ago
  86. d750036 A little refactoring. by Jeremy Hylton · 22 years ago
  87. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  88. f32e459 Replace use of apply() with extended call syntax. by Jeremy Hylton · 22 years ago
  89. 9672901 Remove duplicate "import os" by Neal Norwitz · 22 years ago
  90. cc5f5b2 [Bug #517554] When a signal happens during the select call in by Andrew M. Kuchling · 22 years ago
  91. 2a05bc7 Partial fix for problem in SF buf #487458 by Jeremy Hylton · 22 years ago
  92. f24339f /F observes that we need an else: in connect() by Jeremy Hylton · 23 years ago
  93. e16e54f Use connect_ex() instead of connect(). by Jeremy Hylton · 23 years ago
  94. fbd5797 Fix for SF bug 453099 -- select not defensive by Jeremy Hylton · 23 years ago
  95. 29103c7 Reindent __repr__. by Martin v. Löwis · 23 years ago
  96. eee80ee Patch #470744: Simplify __repr__ error handling. by Martin v. Löwis · 23 years ago
  97. 106bdd3 Correct __repr__: include module name, avoid extra space for empty status, by Martin v. Löwis · 23 years ago
  98. 6ec9a36 Patch #468647: Fix exception propagation in asyncore. by Martin v. Löwis · 23 years ago
  99. 4602c1b Set .addr in a few more places (patch approved by Sam Rushing) by Andrew M. Kuchling · 23 years ago
  100. f6cc07c Patch #461321: Support None as a timeout in poll2 and poll3. by Martin v. Löwis · 23 years ago