Advertisement
Guest User

Untitled

a guest
Oct 25th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. `struct.unpack('l', struct.pack('<hh', -1920, -1320))[0]` returns:
  2. -86443904
  3. Not a legal timestamp -- raised [Errno 22] Invalid argument
  4. `struct.unpack('l', struct.pack('<hh', -1320, -1920))[0]` returns:
  5. -125764904
  6. Not a legal timestamp -- raised [Errno 22] Invalid argument
  7. `struct.unpack('l', struct.pack('>hh', -1920, -1320))[0]` returns:
  8. -654671624
  9. Not a legal timestamp -- raised [Errno 22] Invalid argument
  10. `struct.unpack('l', struct.pack('>hh', -1320, -1920))[0]` returns:
  11. -2131175174
  12. Not a legal timestamp -- raised [Errno 22] Invalid argument
  13. `struct.unpack('L', struct.pack('<hh', -1920, -1320))[0]` returns:
  14. 4208523392
  15. 2103-05-13 14:16:32
  16. `struct.unpack('L', struct.pack('<hh', -1320, -1920))[0]` returns:
  17. 4169202392
  18. 2102-02-12 10:46:32
  19. `struct.unpack('L', struct.pack('>hh', -1920, -1320))[0]` returns:
  20. 3640295672
  21. 2085-05-09 21:14:32
  22. `struct.unpack('L', struct.pack('>hh', -1320, -1920))[0]` returns:
  23. 2163792122
  24. 2038-07-26 17:22:02
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement