- 27 Haz, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
object is destroyed. The destructor now closes the file if needed. The close() method can now be called twice: the second call does nothing.
-
- 09 Nis, 2013 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
>>> import asyncore >>> d = asyncore.dispatcher() >>> d.close() Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python3.4/asyncore.py", line 401, in close self.socket.close() AttributeError: 'NoneType' object has no attribute 'close' >>>
-
- 01 Ock, 2013 1 kayıt (commit)
-
-
Charles-François Natali yazdı
decrease CPU usage and increase throughput.
-
- 18 Ara, 2012 3 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
Patch by Serhiy Storchaka.
-
Andrew Svetlov yazdı
Patch by Serhiy Storchaka.
-
- 18 Eki, 2012 2 kayıt (commit)
-
-
Trent Nelson yazdı
The backport from 3.2 included a few things not appropriate for 2.7.
-
Trent Nelson yazdı
This fixes failing tests on Solaris 10.
-
- 22 Mar, 2012 2 kayıt (commit)
-
-
Giampaolo Rodola yazdı
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.
-
Giampaolo Rodola yazdı
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.
-
- 20 Mar, 2012 3 kayıt (commit)
-
-
Giampaolo Rodola yazdı
-
Giampaolo Rodola yazdı
-
Giampaolo Rodola yazdı
-
- 05 Kas, 2011 1 kayıt (commit)
-
-
Charles-François Natali yazdı
to poll(2): don't set them.
-
- 23 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 14 Tem, 2011 4 kayıt (commit)
-
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
-
- 03 Mar, 2011 6 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88726 | giampaolo.rodola | 2011-03-03 15:10:58 +0100 (gio, 03 mar 2011) | 1 line fix attribute error ........
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88722 | giampaolo.rodola | 2011-03-03 14:57:47 +0100 (gio, 03 mar 2011) | 1 line Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send(). ........
-
Giampaolo Rodolà yazdı
Fix issue 11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), recv() and send().
-
- 25 Şub, 2011 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
- 11 Şub, 2011 2 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
reverting r88395 and r88387 as per http://mail.python.org/pipermail/python-dev/2011-February/108005.html
-
Giampaolo Rodolà yazdı
In different occasions close() might be called more than once, causing problems with already disconnected sockets/dispatchers.
-
- 10 Şub, 2011 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
- 01 Kas, 2010 2 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
-
- 04 Eki, 2010 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
- 15 Eyl, 2010 2 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
Giampaolo Rodolà yazdı
Store all errors signaling a disconnection into a global frozenset to save some computation time on recv() and send().
-
- 23 Agu, 2010 3 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84284 | giampaolo.rodola | 2010-08-23 23:53:41 +0200 (lun, 23 ago 2010) | 1 line fix issue 658749: correctly interprets asyncore's windows errors on connect() ........
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84284 | giampaolo.rodola | 2010-08-23 23:53:41 +0200 (lun, 23 ago 2010) | 1 line fix issue 658749: correctly interprets asyncore's windows errors on connect() ........
-
Giampaolo Rodolà yazdı
-
- 13 Agu, 2010 1 kayıt (commit)
-
-
Giampaolo Rodolà yazdı
-
- 04 Agu, 2010 2 kayıt (commit)
-
-
Mark Dickinson yazdı
This fixes test_asynchat and test_smtplib failures on OS X. (Backport of r73182 from trunk.)
-
Giampaolo Rodolà yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83705 | giampaolo.rodola | 2010-08-04 11:02:27 +0200 (mer, 04 ago 2010) | 1 line fix issue #2944: asyncore doesn't handle connection refused correctly (patch by Alexander Shigin). Merged from 2.7 branch. ........
-