Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa3102c commit 024fc29Copy full SHA for 024fc29
1 file changed
lib/matplotlib/cbook.py
@@ -2551,6 +2551,12 @@ def pts_to_midstep(x, *args):
2551
# convert 2D array back to tuple
2552
return tuple(steps)
2553
2554
+STEP_LOOKUP_MAP = {'pre': pts_to_prestep,
2555
+ 'post': pts_to_poststep,
2556
+ 'mid': pts_to_midstep,
2557
+ 'step-pre': pts_to_prestep,
2558
+ 'step-post': pts_to_poststep,
2559
+ 'step-mid': pts_to_midstep}
2560
2561
# Numpy > 1.6.x deprecates putmask in favor of the new copyto.
2562
# So long as we support versions 1.6.x and less, we need the
0 commit comments