Skip to content

Instantly share code, notes, and snippets.

@gmarkall
Created April 25, 2011 10:13
Show Gist options
  • Save gmarkall/940334 to your computer and use it in GitHub Desktop.
Save gmarkall/940334 to your computer and use it in GitHub Desktop.
Simple multiple dispatch in Python
class Visitor:
def dispatch(self, tree):
"Dispatcher function, dispatching tree type T to method _T."
meth = getattr(self, "_"+tree.__class__.__name__)
meth(tree)
test edit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment