Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c43cceb

Browse files
committed
Remove reference to norm.clip in docstrings.
1 parent 642477e commit c43cceb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/colors.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -629,15 +629,15 @@ def set_bad(self, color='k', alpha=None):
629629

630630
def get_under(self):
631631
"""
632-
Get the color for low out-of-range values when ``norm.clip = False``.
632+
Get the color for low out-of-range values.
633633
"""
634634
if not self._isinit:
635635
self._init()
636636
return self._lut[self._i_under]
637637

638638
def set_under(self, color='k', alpha=None):
639639
"""
640-
Set the color for low out-of-range values when ``norm.clip = False``.
640+
Set the color for low out-of-range values.
641641
"""
642642
_warn_if_global_cmap_modified(self)
643643
self._rgba_under = to_rgba(color, alpha)
@@ -646,15 +646,15 @@ def set_under(self, color='k', alpha=None):
646646

647647
def get_over(self):
648648
"""
649-
Get the color for high out-of-range values when ``norm.clip = False``.
649+
Get the color for high out-of-range values.
650650
"""
651651
if not self._isinit:
652652
self._init()
653653
return self._lut[self._i_over]
654654

655655
def set_over(self, color='k', alpha=None):
656656
"""
657-
Set the color for high out-of-range values when ``norm.clip = False``.
657+
Set the color for high out-of-range values.
658658
"""
659659
_warn_if_global_cmap_modified(self)
660660
self._rgba_over = to_rgba(color, alpha)

0 commit comments

Comments
 (0)