You can end up with persistent changes to the rc object if rc.context() statements are nested. Most notably
import proplot as plot
with plot.rc.context(...):
f, ax = plot.subplots()
ax.format(...)
fails because ax.format calls rc.context(...) internally. #50 will fix this (I ended up putting some quite tangentially related stuff in that PR... will try to avoid this in the future).
You can end up with persistent changes to the
rcobject ifrc.context()statements are nested. Most notablyfails because
ax.formatcallsrc.context(...)internally. #50 will fix this (I ended up putting some quite tangentially related stuff in that PR... will try to avoid this in the future).