[issue4277] asynchat's handle_error inconsistency

2021-06-15 Thread Irit Katriel
Irit Katriel added the comment: asynchat has been deprecated for a long time, it's unlikely we will do anything with it now. -- nosy: +iritkatriel resolution: -> out of date stage: test needed -> resolved status: open -> closed ___ Python tracker

[issue4277] asynchat's handle_error inconsistency

2019-05-01 Thread Josiah Carlson
Change by Josiah Carlson : -- nosy: -josiah.carlson, josiahcarlson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue4277] asynchat's handle_error inconsistency

2019-04-27 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue4277] asynchat's handle_error inconsistency

2014-08-29 Thread Mark Lawrence
Mark Lawrence added the comment: #6550 and #11267 have been closed as out of date as asynchat and asyncore are effectively deprecated in favour of asyncio so can't this go the same way? -- nosy: +BreamoreBoy ___ Python tracker

[issue4277] asynchat's handle_error inconsistency

2014-08-29 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list ma

[issue4277] asynchat's handle_error inconsistency

2014-08-27 Thread STINNER Victor
STINNER Victor added the comment: This issue is 6 years old. I don't understand the bug and the patch has no unit test. I suggest to close the issue as out of date. The asynchat module is now deprecated in favor of the new shiny asyncio module. -- nosy: +haypo

[issue4277] asynchat's handle_error inconsistency

2011-07-17 Thread Nir Soffer
Nir Soffer added the comment: The idea is good, but seems that error handling should be inlined into initiate_send. Also those 3 special exceptions should be defined once in the module instead of repeating them. -- nosy: +nirs ___ Python tracker

[issue4277] asynchat's handle_error inconsistency

2010-07-10 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- assignee: -> giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4277] asynchat's handle_error inconsistency

2010-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- stage: -> unit test needed versions: +Python 3.1, Python 3.2 -Python 3.0 ___ Python tracker ___ ___ Pyth

[issue4277] asynchat's handle_error inconsistency

2009-03-28 Thread intgr
Changes by intgr : -- nosy: +intgr ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailma

[issue4277] asynchat's handle_error inconsistency

2008-11-07 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' <[EMAIL PROTECTED]>: -- versions: +Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-li

[issue4277] asynchat's handle_error inconsistency

2008-11-07 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' <[EMAIL PROTECTED]>: Suppose you have tow sockets handled by two asynchat.async_chat class instances and from class1 you want to send some data through class2: class1(asynchat.async_chat): ... def mymethod(self): class2_instance.push_wi