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 5f14f6f commit 7ebee32Copy full SHA for 7ebee32
1 file changed
lib/matplotlib/backends/__init__.py
@@ -21,6 +21,9 @@ def pylab_setup():
21
backend_name = 'backend_'+backend
22
backend_name = backend_name.lower() # until we banish mixed case
23
backend_name = 'matplotlib.backends.%s'%backend_name.lower()
24
+
25
+ # the last argument is specifies whether to use absolute or relative
26
+ # imports. 0 means only perform absolute imports.
27
backend_mod = __import__(backend_name,
28
globals(),locals(),[backend_name],0)
29
0 commit comments