- 10 Şub, 2017 3 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #29100: On Windows, datetime.datetime.fromtimestamp(min_ts) fails with an OSError in test_timestamp_limits().
-
Victor Stinner yazdı
Issue #29100: Catch OverflowError in the new test_timestamp_limits() test.
-
Victor Stinner yazdı
Issue #29100: Fix datetime.fromtimestamp() regression introduced in Python 3.6.0: check minimum and maximum years.
-
- 21 Kas, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 08 Eyl, 2016 1 kayıt (commit)
-
-
R David Murray yazdı
And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
-
- 30 Agu, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 23 Agu, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 17 Agu, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
Does not appear to be a problem anymore and I cannot figure out why it was skipped in the first place.
-
- 12 Agu, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 11 Agu, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
* Read the zone.tab file for the list of zones to exclude the aliases. * Skip Casablanca and El_Aaiun October 2037 transitions.
-
- 08 Agu, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 02 Agu, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 30 Tem, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 26 Tem, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
Several 32-bit systems have issues with transitions in the year 2037. This is a bug in the system C library since time_t does not overflow until 2038, but let's skip tests starting from 2037 to work around those bugs.
-
- 25 Tem, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 24 Tem, 2016 2 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
This should improve the diagnostic and progress reports.
-
- 23 Tem, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 22 Tem, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 26 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
-
- 25 Mar, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 19 Mar, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
Without the patch, line 1010 of Lib/datetime.py wasn't covered by the test suite. Patch by Colin Williams.
-
- 12 Mar, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Revert: "Always test datetime.strftime("%4Y") Issue #13305: Always test datetime.datetime.strftime("%4Y") for years < 1900." In fact, strftime("%4Y") fails on most platforms.
-
- 11 Mar, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #13305: Always test datetime.datetime.strftime("%4Y") for years < 1900.
-
- 06 Mar, 2016 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
Added an optional argument timespec to the datetime isoformat() method to choose the precision of the time component. Original patch by Alessandro Cucci.
-
- 08 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 16 Kas, 2015 2 kayıt (commit)
-
-
Martin Panter yazdı
-
Serhiy Storchaka yazdı
-
- 14 Kas, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 28 Eyl, 2015 3 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
- 18 Eyl, 2015 2 kayıt (commit)
-
-
Victor Stinner yazdı
Test self.theclass, not datetime. Regression introduced by manual tests.
-
Victor Stinner yazdı
of datetime.datetime: microseconds are now rounded to nearest with ties going to nearest even integer (ROUND_HALF_EVEN), instead of being rounding towards zero (ROUND_DOWN). It's important that these methods use the same rounding mode than datetime.timedelta to keep the property: (datetime(1970,1,1) + timedelta(seconds=t)) == datetime.utcfromtimestamp(t) It also the rounding mode used by round(float) for example. Add more unit tests on the rounding mode in test_datetime.
-
- 08 Eyl, 2015 3 kayıt (commit)
-
-
Victor Stinner yazdı
remove scories of round half up code and debug code.
-
Victor Stinner yazdı
datetime.datetime now round microseconds to nearest with ties going to nearest even integer (ROUND_HALF_EVEN), as round(float), instead of rounding towards -Infinity (ROUND_FLOOR). pytime API: replace _PyTime_ROUND_HALF_UP with _PyTime_ROUND_HALF_EVEN. Fix also _PyTime_Divide() for negative numbers. _PyTime_AsTimeval_impl() now reuses _PyTime_Divide() instead of reimplementing rounding modes.
-
Victor Stinner yazdı
"""Issue #23517: datetime.timedelta constructor now rounds microseconds to nearest with ties going away from zero (ROUND_HALF_UP), as Python 2 and Python older than 3.3, instead of rounding to nearest with ties going to nearest even integer (ROUND_HALF_EVEN).""" datetime.timedelta uses rounding mode ROUND_HALF_EVEN again.
-
- 06 Eyl, 2015 1 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
- 05 Eyl, 2015 1 kayıt (commit)
-
-
Victor Stinner yazdı
The test calls gmtime(-1)/localtime(-1) which is not supported on Windows.
-