Skip to content

Commit 9226ef5

Browse files
committed
close 1287318; remove method deprecated in 2006; remove incorrect warning
svn path=/trunk/matplotlib/; revision=8347
1 parent 7b90c8a commit 9226ef5

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/matplotlib/figure.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -411,11 +411,6 @@ def figimage(self, X,
411411
self.images.append(im)
412412
return im
413413

414-
def set_figsize_inches(self, *args, **kwargs):
415-
import warnings
416-
warnings.warn('Use set_size_inches instead!', DeprecationWarning)
417-
self.set_size_inches(*args, **kwargs)
418-
419414
def set_size_inches(self, *args, **kwargs):
420415
"""
421416
set_size_inches(w,h, forward=False)
@@ -431,9 +426,6 @@ def set_size_inches(self, *args, **kwargs):
431426
automatically updated; eg you can resize the figure window
432427
from the shell
433428
434-
WARNING: forward=True is broken on all backends except GTK*
435-
and WX*
436-
437429
ACCEPTS: a w,h tuple with w,h in inches
438430
"""
439431

0 commit comments

Comments
 (0)