1. 10 Şub, 2017 3 kayıt (commit)
  2. 21 Kas, 2016 1 kayıt (commit)
  3. 07 Eyl, 2016 1 kayıt (commit)
  4. 08 Eyl, 2016 1 kayıt (commit)
  5. 30 Agu, 2016 1 kayıt (commit)
  6. 23 Agu, 2016 1 kayıt (commit)
  7. 17 Agu, 2016 1 kayıt (commit)
  8. 12 Agu, 2016 1 kayıt (commit)
  9. 11 Agu, 2016 1 kayıt (commit)
  10. 08 Agu, 2016 1 kayıt (commit)
  11. 02 Agu, 2016 1 kayıt (commit)
  12. 30 Tem, 2016 1 kayıt (commit)
  13. 26 Tem, 2016 1 kayıt (commit)
  14. 25 Tem, 2016 1 kayıt (commit)
  15. 24 Tem, 2016 2 kayıt (commit)
  16. 23 Tem, 2016 1 kayıt (commit)
  17. 22 Tem, 2016 1 kayıt (commit)
  18. 26 May, 2016 1 kayıt (commit)
  19. 25 Mar, 2016 1 kayıt (commit)
  20. 19 Mar, 2016 1 kayıt (commit)
  21. 12 Mar, 2016 1 kayıt (commit)
    • Victor Stinner's avatar
      Revert change 291d47954618 · 15a83e84
      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.
      15a83e84
  22. 11 Mar, 2016 1 kayıt (commit)
  23. 06 Mar, 2016 1 kayıt (commit)
  24. 08 Şub, 2016 1 kayıt (commit)
  25. 16 Kas, 2015 2 kayıt (commit)
  26. 14 Kas, 2015 1 kayıt (commit)
  27. 28 Eyl, 2015 3 kayıt (commit)
  28. 18 Eyl, 2015 2 kayıt (commit)
    • Victor Stinner's avatar
      Oops, fix test_microsecond_rounding() · 5ebfe42c
      Victor Stinner yazdı
      Test self.theclass, not datetime. Regression introduced by manual tests.
      5ebfe42c
    • Victor Stinner's avatar
      Issue #23517: Fix rounding in fromtimestamp() and utcfromtimestamp() methods · 511491ad
      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.
      511491ad
  29. 08 Eyl, 2015 3 kayıt (commit)
    • Victor Stinner's avatar
      cleanup datetime code · cd5d765b
      Victor Stinner yazdı
      remove scories of round half up code and debug code.
      cd5d765b
    • Victor Stinner's avatar
      Issue #23517: fromtimestamp() and utcfromtimestamp() methods of · 7667f581
      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.
      7667f581
    • Victor Stinner's avatar
      Revert change 0eb8c182131e: · 69cc487d
      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.
      69cc487d
  30. 06 Eyl, 2015 1 kayıt (commit)
  31. 05 Eyl, 2015 1 kayıt (commit)