diff options
author | Utkarsh Upadhyay <mail@musicallyut.in> | 2017-07-02 14:46:04 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-07-02 15:46:04 +0300 |
commit | 98b6bc3bf72532b784a1c1fa76eaa6026a663e44 (patch) | |
tree | 71c47739cd897b13df0ba1086470f9cd0f1eebb0 /Lib/datetime.py | |
parent | 8a8d28501fc8ce25926d168f1c657656c809fd4c (diff) | |
download | cpython-98b6bc3bf72532b784a1c1fa76eaa6026a663e44.tar.gz cpython-98b6bc3bf72532b784a1c1fa76eaa6026a663e44.zip |
bpo-30822: Fix testing of datetime module. (#2530)
Only C implementation was tested.
Diffstat (limited to 'Lib/datetime.py')
-rw-r--r-- | Lib/datetime.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/datetime.py b/Lib/datetime.py index 5d5579c1c6f..b95536fb7af 100644 --- a/Lib/datetime.py +++ b/Lib/datetime.py @@ -2271,7 +2271,8 @@ else: _check_tzinfo_arg, _check_tzname, _check_utc_offset, _cmp, _cmperror, _date_class, _days_before_month, _days_before_year, _days_in_month, _format_time, _is_leap, _isoweek1monday, _math, _ord2ymd, - _time, _time_class, _tzinfo_class, _wrap_strftime, _ymd2ord) + _time, _time_class, _tzinfo_class, _wrap_strftime, _ymd2ord, + _divide_and_round) # XXX Since import * above excludes names that start with _, # docstring does not get overwritten. In the future, it may be # appropriate to maintain a single module level docstring and |