-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #235 from Unidata/fixtests
remove legacy code, update tests that used it
- Loading branch information
Showing
5 changed files
with
47 additions
and
537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
from ._cftime import datetime, real_datetime, _parse_date | ||
from ._cftime import (datetime, real_datetime, | ||
_parse_date, _dateparse, _datesplit) | ||
from ._cftime import num2date, date2num, date2index, time2index, num2pydate | ||
from ._cftime import microsec_units, millisec_units, \ | ||
sec_units, hr_units, day_units, min_units,\ | ||
UNIT_CONVERSION_FACTORS | ||
from ._cftime import (microsec_units, millisec_units, | ||
sec_units, hr_units, day_units, min_units, | ||
UNIT_CONVERSION_FACTORS) | ||
from ._cftime import __version__, CFWarning | ||
from ._cftime import DatetimeNoLeap, DatetimeAllLeap, Datetime360Day, DatetimeJulian, \ | ||
DatetimeGregorian, DatetimeProlepticGregorian | ||
# legacy functions in _cftime_legacy.pyx | ||
from ._cftime import utime, JulianDayFromDate, DateFromJulianDay | ||
# these will be removed in a future release | ||
from ._cftime import (DatetimeNoLeap, DatetimeAllLeap, Datetime360Day, | ||
Datetime360Day, DatetimeJulian, | ||
DatetimeGregorian, DatetimeProlepticGregorian) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.