time.py.exp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. Testing 2034
  36. Testing 2035
  37. Testing 2036
  38. Testing 2037
  39. Testing 2038
  40. Testing 2039
  41. Testing 2040
  42. Testing 2041
  43. Testing 2042
  44. Testing 2043
  45. Testing 2044
  46. Testing 2045
  47. Testing 2046
  48. Testing 2047
  49. Testing 2048
  50. time.localtime( 0 ) returned (2000, 1, 1, 0, 0, 0, 5, 1) (pass)
  51. time.localtime( 1 ) returned (2000, 1, 1, 0, 0, 1, 5, 1) (pass)
  52. time.localtime( 59 ) returned (2000, 1, 1, 0, 0, 59, 5, 1) (pass)
  53. time.localtime( 60 ) returned (2000, 1, 1, 0, 1, 0, 5, 1) (pass)
  54. time.localtime( 3599 ) returned (2000, 1, 1, 0, 59, 59, 5, 1) (pass)
  55. time.localtime( 3600 ) returned (2000, 1, 1, 1, 0, 0, 5, 1) (pass)
  56. time.localtime( -1 ) returned (1999, 12, 31, 23, 59, 59, 4, 365) (pass)
  57. time.localtime( 447549467 ) returned (2014, 3, 7, 23, 17, 47, 4, 66) (pass)
  58. time.localtime( -940984933 ) returned (1970, 3, 7, 23, 17, 47, 5, 66) (pass)
  59. time.localtime( -1072915199 ) returned (1966, 1, 1, 0, 0, 1, 5, 1) (pass)
  60. time.localtime( -1072915200 ) returned (1966, 1, 1, 0, 0, 0, 5, 1) (pass)
  61. time.localtime( -1072915201 ) returned (1965, 12, 31, 23, 59, 59, 4, 365) (pass)
  62. True
  63. True
  64. True
  65. True