Commit 419af88b authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

[Part of patch #909005] Remove Mac code for writable

parent 0ebbbe30
...@@ -259,12 +259,6 @@ class dispatcher: ...@@ -259,12 +259,6 @@ class dispatcher:
def readable(self): def readable(self):
return True return True
if os.name == 'mac':
# The macintosh will select a listening socket for
# write if you let it. What might this mean?
def writable(self):
return not self.accepting
else:
def writable(self): def writable(self):
return True return True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment