]> git.ipfire.org Git - thirdparty/tornado.git/commit
Use a list instead of a set for IOLoop callbacks. This preserves order
authorBen Darnell <ben@bendarnell.com>
Thu, 6 Jan 2011 20:36:46 +0000 (12:36 -0800)
committerBen Darnell <ben@bendarnell.com>
Thu, 6 Jan 2011 20:38:46 +0000 (12:38 -0800)
commit0d7a3f0862fcb00b0fa416fbcfe8f701e22636e6
tree7b71386698a7864e95137de4bfd37fc596af770a
parentdaf9669eb03f8d4bd05a88385655cd413e1faedb
Use a list instead of a set for IOLoop callbacks.  This preserves order
and allows the same callback object to be reused.

A set was originally used to support remove_callback(), but that method
was removed in the 1.1 release.
tornado/ioloop.py