@@ -172,7 +172,7 @@ def _create_kwargs(global_kwargs, local_kwargs, **other_kwargs):
172172 kwargs , plot_streamlines , gridspec = gridspec , gridtype = gridtype ,
173173 ax = ax )
174174 out [0 ] += streamlines (
175- sys , pointdata , timedata , check_kwargs = False ,
175+ sys , pointdata , timedata , _check_kwargs = False ,
176176 suppress_warnings = suppress_warnings , ** kwargs_local )
177177
178178 # Get rid of keyword arguments handled by streamlines
@@ -188,7 +188,7 @@ def _create_kwargs(global_kwargs, local_kwargs, **other_kwargs):
188188 kwargs_local = _create_kwargs (
189189 kwargs , plot_separatrices , gridspec = gridspec , ax = ax )
190190 out [0 ] += separatrices (
191- sys , pointdata , check_kwargs = False , ** kwargs_local )
191+ sys , pointdata , _check_kwargs = False , ** kwargs_local )
192192
193193 # Get rid of keyword arguments handled by separatrices
194194 for kw in ['arrows' , 'arrow_size' , 'arrow_style' , 'params' ]:
@@ -198,7 +198,7 @@ def _create_kwargs(global_kwargs, local_kwargs, **other_kwargs):
198198 kwargs_local = _create_kwargs (
199199 kwargs , plot_vectorfield , gridspec = gridspec , ax = ax )
200200 out [1 ] = vectorfield (
201- sys , pointdata , check_kwargs = False , ** kwargs_local )
201+ sys , pointdata , _check_kwargs = False , ** kwargs_local )
202202
203203 # Get rid of keyword arguments handled by vectorfield
204204 for kw in ['color' , 'params' ]:
@@ -208,7 +208,7 @@ def _create_kwargs(global_kwargs, local_kwargs, **other_kwargs):
208208 kwargs_local = _create_kwargs (
209209 kwargs , plot_equilpoints , gridspec = gridspec , ax = ax )
210210 out [2 ] = equilpoints (
211- sys , pointdata , check_kwargs = False , ** kwargs_local )
211+ sys , pointdata , _check_kwargs = False , ** kwargs_local )
212212
213213 # Get rid of keyword arguments handled by equilpoints
214214 for kw in ['params' ]:
@@ -231,7 +231,7 @@ def _create_kwargs(global_kwargs, local_kwargs, **other_kwargs):
231231
232232def vectorfield (
233233 sys , pointdata , gridspec = None , ax = None , suppress_warnings = False ,
234- check_kwargs = True , ** kwargs ):
234+ _check_kwargs = True , ** kwargs ):
235235 """Plot a vector field in the phase plane.
236236
237237 This function plots a vector field for a two-dimensional state
@@ -301,7 +301,7 @@ def vectorfield(
301301 color = _get_color (kwargs , ax = ax )
302302
303303 # Make sure all keyword arguments were processed
304- if check_kwargs and kwargs :
304+ if _check_kwargs and kwargs :
305305 raise TypeError ("unrecognized keywords: " , str (kwargs ))
306306
307307 # Generate phase plane (quiver) data
@@ -321,7 +321,7 @@ def vectorfield(
321321
322322def streamlines (
323323 sys , pointdata , timedata = 1 , gridspec = None , gridtype = None , dir = None ,
324- ax = None , check_kwargs = True , suppress_warnings = False , ** kwargs ):
324+ ax = None , _check_kwargs = True , suppress_warnings = False , ** kwargs ):
325325 """Plot stream lines in the phase plane.
326326
327327 This function plots stream lines for a two-dimensional state space
@@ -399,7 +399,7 @@ def streamlines(
399399 color = _get_color (kwargs , ax = ax )
400400
401401 # Make sure all keyword arguments were processed
402- if check_kwargs and kwargs :
402+ if _check_kwargs and kwargs :
403403 raise TypeError ("unrecognized keywords: " , str (kwargs ))
404404
405405 # Create reverse time system, if needed
@@ -433,7 +433,7 @@ def streamlines(
433433
434434
435435def equilpoints (
436- sys , pointdata , gridspec = None , color = 'k' , ax = None , check_kwargs = True ,
436+ sys , pointdata , gridspec = None , color = 'k' , ax = None , _check_kwargs = True ,
437437 ** kwargs ):
438438 """Plot equilibrium points in the phase plane.
439439
@@ -496,7 +496,7 @@ def equilpoints(
496496 points , _ = _make_points (pointdata , gridspec , 'meshgrid' )
497497
498498 # Make sure all keyword arguments were processed
499- if check_kwargs and kwargs :
499+ if _check_kwargs and kwargs :
500500 raise TypeError ("unrecognized keywords: " , str (kwargs ))
501501
502502 # Search for equilibrium points
@@ -513,7 +513,7 @@ def equilpoints(
513513
514514def separatrices (
515515 sys , pointdata , timedata = None , gridspec = None , ax = None ,
516- check_kwargs = True , suppress_warnings = False , ** kwargs ):
516+ _check_kwargs = True , suppress_warnings = False , ** kwargs ):
517517 """Plot separatrices in the phase plane.
518518
519519 This function plots separatrices for a two-dimensional state space
@@ -606,7 +606,7 @@ def separatrices(
606606 stable_color = unstable_color = color
607607
608608 # Make sure all keyword arguments were processed
609- if check_kwargs and kwargs :
609+ if _check_kwargs and kwargs :
610610 raise TypeError ("unrecognized keywords: " , str (kwargs ))
611611
612612 # Create a "reverse time" system to use for simulation
0 commit comments