File tree Expand file tree Collapse file tree 3 files changed +2
-752
lines changed Expand file tree Collapse file tree 3 files changed +2
-752
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ Changes in 1.3.x
24
24
- The Qt 3.x backends (`qt ` and `qtagg `) have been removed in
25
25
favor of the Qt 4.x backends (`qt4 ` and `qt4agg `).
26
26
27
+ - The FltkAgg and Emf backends have been removed.
28
+
27
29
- The `matplotlib.nxutils ` module has been removed. Use the
28
30
functionality on `matplotlib.path.Path.contains_point ` and
29
31
friends instead.
Original file line number Diff line number Diff line change @@ -1920,7 +1920,6 @@ def get_width_height(self):
1920
1920
return int (self .figure .bbox .width ), int (self .figure .bbox .height )
1921
1921
1922
1922
filetypes = {
1923
- 'emf' : 'Enhanced Metafile' ,
1924
1923
'eps' : 'Encapsulated Postscript' ,
1925
1924
'pdf' : 'Portable Document Format' ,
1926
1925
'pgf' : 'LaTeX PGF Figure' ,
@@ -1942,11 +1941,6 @@ def get_width_height(self):
1942
1941
# >>> import matplotlib.tests.test_spines
1943
1942
# >>> list(matplotlib.tests.test_spines.test_spines_axes_positions())[0][0]()
1944
1943
1945
- def print_emf (self , * args , ** kwargs ):
1946
- from backends .backend_emf import FigureCanvasEMF # lazy import
1947
- emf = self .switch_backends (FigureCanvasEMF )
1948
- return emf .print_emf (* args , ** kwargs )
1949
-
1950
1944
def print_eps (self , * args , ** kwargs ):
1951
1945
from backends .backend_ps import FigureCanvasPS # lazy import
1952
1946
ps = self .switch_backends (FigureCanvasPS )
You can’t perform that action at this time.
0 commit comments