Commit b41c030a authored by Jason Madden's avatar Jason Madden

Remove spurious print() call.

parent 0138e418
......@@ -140,8 +140,12 @@ class AbstractLinkable(object):
break
link = self._links.pop(0) # Cython optimizes using list internals
id_link = id(link)
if id_link not in done:
# XXX: JAM: What was I thinking? This doesn't make much sense,
# there's a good chance `link` will be deallocated, and its id() will
# be free to be reused.
done.add(id_link)
try:
link(self)
......
......@@ -166,7 +166,6 @@ class BaseServer(object):
raise TypeError("'handle' must be provided")
def _start_accepting_if_started(self, _event=None):
print("Begin accepting. Already started?", self.started)
if self.started:
self.start_accepting()
......
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