File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,4 +43,5 @@ in Matplotlib 2.2 has been removed. See below for a list:
4343- `mlab.rec2text ` (use numpy.recarray.tofile instead)
4444- `mlab.csvformat_factory `
4545- `mlab.get_formatd `
46+ - `mlab.FormatDatetime ` (use datetime.strftime instead)
4647- `mlab.donothing_callback `
Original file line number Diff line number Diff line change @@ -2276,16 +2276,6 @@ def fromstr(self, x):
22762276 return dateutil .parser .parse (x ).date ()
22772277
22782278
2279- @cbook .deprecated ("2.2" , alternative = 'datetime.strftime' )
2280- class FormatDatetime (FormatDate ):
2281- def __init__ (self , fmt = '%Y-%m-%d %H:%M:%S' ):
2282- FormatDate .__init__ (self , fmt )
2283-
2284- def fromstr (self , x ):
2285- import dateutil .parser
2286- return dateutil .parser .parse (x )
2287-
2288-
22892279class GaussianKDE (object ):
22902280 """
22912281 Representation of a kernel-density estimate using Gaussian kernels.
You can’t perform that action at this time.
0 commit comments