@@ -1765,27 +1765,23 @@ def get_xaxis(self):
17651765
17661766 def get_xgridlines (self ):
17671767 """Get the x grid lines as a list of `Line2D` instances."""
1768- return cbook .silent_list ('Line2D xgridline' ,
1769- self .xaxis .get_gridlines ())
1768+ return self .xaxis .get_gridlines ()
17701769
17711770 def get_xticklines (self ):
17721771 """Get the x tick lines as a list of `Line2D` instances."""
1773- return cbook .silent_list ('Line2D xtickline' ,
1774- self .xaxis .get_ticklines ())
1772+ return self .xaxis .get_ticklines ()
17751773
17761774 def get_yaxis (self ):
17771775 """Return the YAxis instance."""
17781776 return self .yaxis
17791777
17801778 def get_ygridlines (self ):
17811779 """Get the y grid lines as a list of `Line2D` instances."""
1782- return cbook .silent_list ('Line2D ygridline' ,
1783- self .yaxis .get_gridlines ())
1780+ return self .yaxis .get_gridlines ()
17841781
17851782 def get_yticklines (self ):
17861783 """Get the y tick lines as a list of `Line2D` instances."""
1787- return cbook .silent_list ('Line2D ytickline' ,
1788- self .yaxis .get_ticklines ())
1784+ return self .yaxis .get_ticklines ()
17891785
17901786 # Adding and tracking artists
17911787
@@ -3361,8 +3357,7 @@ def get_xmajorticklabels(self):
33613357 labels : list
33623358 List of `~matplotlib.text.Text` instances
33633359 """
3364- return cbook .silent_list ('Text xticklabel' ,
3365- self .xaxis .get_majorticklabels ())
3360+ return self .xaxis .get_majorticklabels ()
33663361
33673362 def get_xminorticklabels (self ):
33683363 """
@@ -3373,8 +3368,7 @@ def get_xminorticklabels(self):
33733368 labels : list
33743369 List of `~matplotlib.text.Text` instances
33753370 """
3376- return cbook .silent_list ('Text xticklabel' ,
3377- self .xaxis .get_minorticklabels ())
3371+ return self .xaxis .get_minorticklabels ()
33783372
33793373 def get_xticklabels (self , minor = False , which = None ):
33803374 """
@@ -3396,9 +3390,7 @@ def get_xticklabels(self, minor=False, which=None):
33963390 ret : list
33973391 List of `~matplotlib.text.Text` instances.
33983392 """
3399- return cbook .silent_list ('Text xticklabel' ,
3400- self .xaxis .get_ticklabels (minor = minor ,
3401- which = which ))
3393+ return self .xaxis .get_ticklabels (minor = minor , which = which )
34023394
34033395 def set_xticklabels (self , labels , fontdict = None , minor = False , ** kwargs ):
34043396 """
@@ -3744,8 +3736,7 @@ def get_ymajorticklabels(self):
37443736 labels : list
37453737 List of `~matplotlib.text.Text` instances
37463738 """
3747- return cbook .silent_list ('Text yticklabel' ,
3748- self .yaxis .get_majorticklabels ())
3739+ return self .yaxis .get_majorticklabels ()
37493740
37503741 def get_yminorticklabels (self ):
37513742 """
@@ -3756,8 +3747,7 @@ def get_yminorticklabels(self):
37563747 labels : list
37573748 List of `~matplotlib.text.Text` instances
37583749 """
3759- return cbook .silent_list ('Text yticklabel' ,
3760- self .yaxis .get_minorticklabels ())
3750+ return self .yaxis .get_minorticklabels ()
37613751
37623752 def get_yticklabels (self , minor = False , which = None ):
37633753 """
@@ -3779,9 +3769,7 @@ def get_yticklabels(self, minor=False, which=None):
37793769 ret : list
37803770 List of `~matplotlib.text.Text` instances.
37813771 """
3782- return cbook .silent_list ('Text yticklabel' ,
3783- self .yaxis .get_ticklabels (minor = minor ,
3784- which = which ))
3772+ return self .yaxis .get_ticklabels (minor = minor , which = which )
37853773
37863774 def set_yticklabels (self , labels , fontdict = None , minor = False , ** kwargs ):
37873775 """
0 commit comments