@@ -2429,7 +2429,7 @@ def set_axis_bgcolor(self, color):
24292429    def  invert_xaxis (self ):
24302430        "Invert the x-axis." 
24312431        left , right  =  self .get_xlim ()
2432-         self .set_xlim (right , left )
2432+         self .set_xlim (right , left ,  auto = None )
24332433
24342434    def  xaxis_inverted (self ):
24352435        """Returns *True* if the x-axis is inverted.""" 
@@ -2655,7 +2655,7 @@ def invert_yaxis(self):
26552655        Invert the y-axis. 
26562656        """ 
26572657        bottom , top  =  self .get_ylim ()
2658-         self .set_ylim (top , bottom )
2658+         self .set_ylim (top , bottom ,  auto = None )
26592659
26602660    def  yaxis_inverted (self ):
26612661        """Returns *True* if the y-axis is inverted.""" 
@@ -6075,6 +6075,12 @@ def scatter(self, x, y, s=20, c='b', marker='o', cmap=None, norm=None,
60756075            warnings .warn (
60766076                '''replace "faceted=False" with "edgecolors='none'"''' ,
60776077                mplDeprecation )  # 2008/04/18 
6078+ < << << <<  HEAD 
6079+ == == == = 
6080+ 
6081+         sym  =  None 
6082+         symstyle  =  0 
6083+ >> >> >> >  upstream / v1 .2. x 
60786084
60796085        # to be API compatible 
60806086        if  marker  is  None  and  not  (verts  is  None ):
@@ -8632,7 +8638,7 @@ def specgram(self, x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
86328638        spectrum is shown.  If *x* is complex, both positive and 
86338639        negative parts of the spectrum are shown.  This can be 
86348640        overridden using the *sides* keyword argument. 
8635-          
8641+ 
86368642        Also note that while the plot is in dB, the *Pxx* array returned is 
86378643        linear in power. 
86388644
0 commit comments