projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1fbd8e1
)
get rid of asyncore.dispatcher's debug attribute, which is no longer used (assuming...
author
Giampaolo Rodolà
<g.rodola@gmail.com>
Thu, 10 Feb 2011 18:42:36 +0000
(18:42 +0000)
committer
Giampaolo Rodolà
<g.rodola@gmail.com>
Thu, 10 Feb 2011 18:42:36 +0000
(18:42 +0000)
Lib/asyncore.py
patch
|
blob
|
history
diff --git
a/Lib/asyncore.py
b/Lib/asyncore.py
index a277bddc86a2e3180a51ee3fd2481cf51618104b..f0712e20615fe91ff7ca4f880f80aab23a6be886 100644
(file)
--- a/
Lib/asyncore.py
+++ b/
Lib/asyncore.py
@@
-218,7
+218,6
@@
def loop(timeout=30.0, use_poll=False, map=None, count=None):
class dispatcher:
- debug = False
connected = False
accepting = False
closing = False
@@
-544,8
+543,6
@@
class dispatcher_with_send(dispatcher):
return (not self.connected) or len(self.out_buffer)
def send(self, data):
- if self.debug:
- self.log_info('sending %s' % repr(data))
self.out_buffer = self.out_buffer + data
self.initiate_send()