@@ -2994,7 +2994,7 @@ def stackplot(x, *args, **kwargs):
29942994 draw_if_interactive ()
29952995 finally :
29962996 ax .hold (washold )
2997-
2997+
29982998 return ret
29992999
30003000# This function was autogenerated by boilerplate.py. Do not edit as
@@ -3040,7 +3040,7 @@ def step(x, y, *args, **kwargs):
30403040@autogen_docstring (Axes .streamplot )
30413041def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
30423042 norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
3043- hold = None ):
3043+ transform = None , hold = None ):
30443044 ax = gca ()
30453045 # allow callers to override the hold state by passing hold=True|False
30463046 washold = ax .ishold ()
@@ -3051,7 +3051,7 @@ def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
30513051 ret = ax .streamplot (x , y , u , v , density = density , linewidth = linewidth ,
30523052 color = color , cmap = cmap , norm = norm ,
30533053 arrowsize = arrowsize , arrowstyle = arrowstyle ,
3054- minlength = minlength )
3054+ minlength = minlength , transform = transform )
30553055 draw_if_interactive ()
30563056 finally :
30573057 ax .hold (washold )
0 commit comments