File tree 2 files changed +8
-1
lines changed 2 files changed +8
-1
lines changed 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
59
59
deprecated. Instead, explicitly create a `.LinearSegmentedColormap ` and pass
60
60
it via the *cmap * parameter:
61
61
``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):
572
572
`~datetime.datetime.strftime` format string.
573
573
"""
574
574
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)" )
576
579
577
580
def __init__ (self , fmt , tz = None ):
578
581
"""
You can’t perform that action at this time.
0 commit comments