@@ -578,14 +578,10 @@ def set_xlim3d(self, left=None, right=None, emit=True, auto=False,
578
578
if right is None and np .iterable (left ):
579
579
left , right = left
580
580
if xmin is not None :
581
- cbook .warn_deprecated ('3.0' , name = '`xmin`' ,
582
- alternative = '`left`' , obj_type = 'argument' )
583
581
if left is not None :
584
582
raise TypeError ('Cannot pass both `xmin` and `left`' )
585
583
left = xmin
586
584
if xmax is not None :
587
- cbook .warn_deprecated ('3.0' , name = '`xmax`' ,
588
- alternative = '`right`' , obj_type = 'argument' )
589
585
if right is not None :
590
586
raise TypeError ('Cannot pass both `xmax` and `right`' )
591
587
right = xmax
@@ -636,14 +632,10 @@ def set_ylim3d(self, bottom=None, top=None, emit=True, auto=False,
636
632
if top is None and np .iterable (bottom ):
637
633
bottom , top = bottom
638
634
if ymin is not None :
639
- cbook .warn_deprecated ('3.0' , name = '`ymin`' ,
640
- alternative = '`bottom`' , obj_type = 'argument' )
641
635
if bottom is not None :
642
636
raise TypeError ('Cannot pass both `ymin` and `bottom`' )
643
637
bottom = ymin
644
638
if ymax is not None :
645
- cbook .warn_deprecated ('3.0' , name = '`ymax`' ,
646
- alternative = '`top`' , obj_type = 'argument' )
647
639
if top is not None :
648
640
raise TypeError ('Cannot pass both `ymax` and `top`' )
649
641
top = ymax
@@ -695,14 +687,10 @@ def set_zlim3d(self, bottom=None, top=None, emit=True, auto=False,
695
687
if top is None and np .iterable (bottom ):
696
688
bottom , top = bottom
697
689
if zmin is not None :
698
- cbook .warn_deprecated ('3.0' , name = '`zmin`' ,
699
- alternative = '`bottom`' , obj_type = 'argument' )
700
690
if bottom is not None :
701
691
raise TypeError ('Cannot pass both `zmin` and `bottom`' )
702
692
bottom = zmin
703
693
if zmax is not None :
704
- cbook .warn_deprecated ('3.0' , name = '`zmax`' ,
705
- alternative = '`top`' , obj_type = 'argument' )
706
694
if top is not None :
707
695
raise TypeError ('Cannot pass both `zmax` and `top`' )
708
696
top = zmax
0 commit comments