Skip to content

Instantly share code, notes, and snippets.

@1st1
Last active December 20, 2017 01:57
Show Gist options
  • Save 1st1/5746f8662d938e3cadf30474eea1e25e to your computer and use it in GitHub Desktop.
Save 1st1/5746f8662d938e3cadf30474eea1e25e to your computer and use it in GitHub Desktop.
sd.py
from functools import singledispatch
@singledispatch
def repr_png(arg):
if hasattr(type(arg), '__repr_png__'):
return type(arg).__repr_png__(arg)
raise
@repr_png.register(int)
def _(i):
# render an int
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment