You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is in Surface._repr_png_(). Python 3 doesn't have the cStringIO module, so the line data = StringIO() fails (silently). If I instead use the io module as suggested here, the snippet above generates an error from cairo.
The text was updated successfully, but these errors were encountered:
The following snippet produces no output in jupyter with python3.
The problem is in
Surface._repr_png_()
. Python 3 doesn't have the cStringIO module, so the linedata = StringIO()
fails (silently). If I instead use theio
module as suggested here, the snippet above generates an error from cairo.The text was updated successfully, but these errors were encountered: