Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f383777 commit 175e3ecCopy full SHA for 175e3ec
lib/matplotlib/backends/backend_agg.py
@@ -46,11 +46,12 @@ class RendererAgg(RendererBase):
46
context instance that controls the colors/styles
47
"""
48
debug=1
49
- texd = maxdict(50) # a cache of tex image rasters
50
- _fontd = maxdict(50)
51
def __init__(self, width, height, dpi):
52
if __debug__: verbose.report('RendererAgg.__init__', 'debug-annoying')
53
RendererBase.__init__(self)
+ self.texd = maxdict(50) # a cache of tex image rasters
+ self._fontd = maxdict(50)
54
+
55
self.dpi = dpi
56
self.width = width
57
self.height = height
0 commit comments