Hi, just a quick comment.
Johannes Wienke wrote:
> raise KeyError("No _ObserverItem found belonging to '%s'." % observer)
it's actually faster to write
raise KeyError, "No _ObserverItem found belonging to '%s'." % observer
even if that's not the preferred way of doing it in Python.
Stefan
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev
