File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,3 +59,7 @@ Passing raw data via parameters *data* and *lut* to `.register_cmap()` is
5959deprecated. Instead, explicitly create a `.LinearSegmentedColormap ` and pass
6060it via the *cmap * parameter:
6161``register_cmap(cmap=LinearSegmentedColormap(name, data, lut)) ``.
62+
63+ ``DateFormatter.illegal_s ``
64+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
65+ This attribute is unused and deprecated.
Original file line number Diff line number Diff line change @@ -572,7 +572,10 @@ class DateFormatter(ticker.Formatter):
572572 `~datetime.datetime.strftime` format string.
573573 """
574574
575- illegal_s = re .compile (r"((^|[^%])(%%)*%s)" )
575+ @cbook .deprecated ("3.3" )
576+ @property
577+ def illegal_s (self ):
578+ return re .compile (r"((^|[^%])(%%)*%s)" )
576579
577580 def __init__ (self , fmt , tz = None ):
578581 """
You can’t perform that action at this time.
0 commit comments