modtime.py.exp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Testing 2000
  2. Testing 2001
  3. Testing 2002
  4. Testing 2003
  5. Testing 2004
  6. Testing 2005
  7. Testing 2006
  8. Testing 2007
  9. Testing 2008
  10. Testing 2009
  11. Testing 2010
  12. Testing 2011
  13. Testing 2012
  14. Testing 2013
  15. Testing 2014
  16. Testing 2015
  17. Testing 2016
  18. Testing 2017
  19. Testing 2018
  20. Testing 2019
  21. Testing 2020
  22. Testing 2021
  23. Testing 2022
  24. Testing 2023
  25. Testing 2024
  26. Testing 2025
  27. Testing 2026
  28. Testing 2027
  29. Testing 2028
  30. Testing 2029
  31. Testing 2030
  32. Testing 2031
  33. Testing 2032
  34. Testing 2033
  35. time.localtime( 0 ) returned (2000, 1, 1, 0, 0, 0, 5, 1) (pass)
  36. time.localtime( 1 ) returned (2000, 1, 1, 0, 0, 1, 5, 1) (pass)
  37. time.localtime( 59 ) returned (2000, 1, 1, 0, 0, 59, 5, 1) (pass)
  38. time.localtime( 60 ) returned (2000, 1, 1, 0, 1, 0, 5, 1) (pass)
  39. time.localtime( 3599 ) returned (2000, 1, 1, 0, 59, 59, 5, 1) (pass)
  40. time.localtime( 3600 ) returned (2000, 1, 1, 1, 0, 0, 5, 1) (pass)
  41. time.localtime( -1 ) returned (1999, 12, 31, 23, 59, 59, 4, 365) (pass)
  42. time.localtime( 447549467 ) returned (2014, 3, 7, 23, 17, 47, 4, 66) (pass)
  43. time.localtime( -940984933 ) returned (1970, 3, 7, 23, 17, 47, 5, 66) (pass)
  44. time.localtime( -1072915199 ) returned (1966, 1, 1, 0, 0, 1, 5, 1) (pass)
  45. time.localtime( -1072915200 ) returned (1966, 1, 1, 0, 0, 0, 5, 1) (pass)
  46. time.localtime( -1072915201 ) returned (1965, 12, 31, 23, 59, 59, 4, 365) (pass)