1. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  2. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  3. 56221a7 Chris Herborth <chrish@pobox.com>: Minor updates for BeOS R5. by Fred Drake · 24 years ago
  4. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
  5. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
  6. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  7. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  8. ed77bac Fix floattime prototype ((void), not (double)) by Thomas Wouters · 24 years ago
  9. 58d0510 ANSIfy some more forward declarations. by Thomas Wouters · 24 years ago
  10. 770e404 ANSIfy yet another hidden function definition. by Thomas Wouters · 24 years ago
  11. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
  12. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  13. 416d413 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  14. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  15. ee398fa Mac only: two epoch problem workarounds are no longer needed for GUSI by Jack Jansen · 24 years ago
  16. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  17. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  18. 0e12395 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  19. dfb4ebd Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  20. fa48116 Trent Mick: use size_t instead of int where appropriate (time_strftime()). by Guido van Rossum · 24 years ago
  21. aff6018 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  22. c410e92 Jack Jansen: by Guido van Rossum · 24 years ago
  23. c24ca4b Fix probable bug; if errno == EINTR, floatsleep() doesn't break out of by Andrew M. Kuchling · 24 years ago
  24. 7ceab65 Fix bogus error reporting on strptime: let PyArg_ParseTuple set exception. by Jeremy Hylton · 24 years ago
  25. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  26. b2b42dd The functions asctime() and mktime() are documented to take a 9-tuple by Guido van Rossum · 25 years ago
  27. 09cbb01 Jack Jansen: Mac has no EINTR. by Guido van Rossum · 25 years ago
  28. a5456d5 In floatsleep(), when using select(), ignore EINTR error. by Guido van Rossum · 25 years ago
  29. ea424e1 Apparently __GNU_LIBRARY__ is defined for glibc as well as for libc5. by Guido van Rossum · 25 years ago
  30. 0ffdd05 Jonathan Giddy notes, and Chris Lawrence agrees, that some comments on by Guido van Rossum · 25 years ago
  31. 4958f9a #$@%! Forgot to remove a #error directive used for testing. Sorry. by Guido van Rossum · 25 years ago
  32. 5773160 Chris Lawrence writes: by Guido van Rossum · 25 years ago
  33. d3eb577 Patch by Chris Herborth for BeOS code. He writes: by Guido van Rossum · 25 years ago
  34. c222ec2 Patch by Tadayoshi Funaba (with some changes) to be smarter about by Guido van Rossum · 25 years ago
  35. 360eb9f We don't support leap seconds, so the seconds field of a time 9-tuple by Guido van Rossum · 25 years ago
  36. 446ccfe The doc string for strptime had the arguments reversed -- the string by Guido van Rossum · 26 years ago
  37. 0a6363d Get rid of the strptype() declaration -- on some BSD systems, it's a by Guido van Rossum · 26 years ago
  38. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  39. c206873 Make gcc -Wall happy: by Guido van Rossum · 26 years ago
  40. 2645241 Fixes for OS/2 by Jeff Rush. by Guido van Rossum · 26 years ago
  41. cfbaecc Y2K fix affecting asctime(), mktime(), strftime(). by Guido van Rossum · 26 years ago
  42. bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  43. 0ef577b Added doc strings. by Guido van Rossum · 26 years ago
  44. 87ce7bb Added strptime, if it exists. Modified after a patch by Jesse Hallio. by Guido van Rossum · 26 years ago
  45. 1f41f84 Instead of calling mktime(), which has all sorts of unwanted side by Guido van Rossum · 26 years ago
  46. 60cd813 Check for HAVE_MKTIME (if you don't have it, some tests will fail, but by Guido van Rossum · 26 years ago
  47. 7853570 Raise ValueError: "unconvertible time" when ctime() returns NULL, by Guido van Rossum · 26 years ago
  48. 1d0d7e4 At Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call to DosSleep(). by Guido van Rossum · 27 years ago
  49. be1eb0d (1) call mktime() just before strftime(); it normalizes the buffer and by Guido van Rossum · 27 years ago
  50. 7bf22de Patch for QNX, by Chris Herborth. by Guido van Rossum · 27 years ago
  51. 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
  52. 8607ae2 Move the Py_{{BEGIN,END}_ALLOW,BLOCK}_THREADS macros in time_sleep() by Guido van Rossum · 27 years ago
  53. e6a4b7b timezone support for macintosh (Jack) by Guido van Rossum · 27 years ago
  54. 3917c22 Win32 precision clock() -- Mark Hammond. by Guido van Rossum · 27 years ago
  55. a78bfe1 Issue a more meaningful error if strftime keeps returning a NULL pointer. by Guido van Rossum · 27 years ago
  56. 4a6cf41 Formatting, and minor error detection by Barry Warsaw · 28 years ago
  57. 5217457 Added #ifdef around ``extern int ftime();'' for MS WINDOWS (which has by Guido van Rossum · 28 years ago
  58. ec775c5 ins(): missed a renaming in a string: dictinsert => PyDict_SetItemString. by Barry Warsaw · 28 years ago
  59. 9a2a8a8 Greatly renamed. by Barry Warsaw · 28 years ago
  60. 1bb126f Add extern decl of ftime() to make gcc -Wall happy. by Guido van Rossum · 28 years ago
  61. 0b1ff66 Should compare errno to 0, not NULL by Guido van Rossum · 28 years ago
  62. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  63. 6e8583d Check for NULL pointer returned from localtime()/gmtime(). by Guido van Rossum · 28 years ago
  64. b2fb364 Sleep() turns out to be win32 specific. by Guido van Rossum · 28 years ago
  65. cac6c72 Some changes for better Windows portability. by Guido van Rossum · 28 years ago
  66. 99d90c0 Include "mymath.h" instead of manually declaring math functions. by Guido van Rossum · 28 years ago
  67. bceeac8 Watcom changes. by Guido van Rossum · 28 years ago
  68. 1b66a4f default CLOCKS_PER_SEC to CLK_TCK if it exists by Guido van Rossum · 28 years ago
  69. 5416e20 mark strftime as varargs by Guido van Rossum · 28 years ago
  70. 8ccfc93 Removed unused variable by Jack Jansen · 29 years ago
  71. 8d8c1ee added time.strftime() by Guido van Rossum · 29 years ago
  72. cc08112 tiny additions for Windows 3.1 by Guido van Rossum · 29 years ago
  73. a320fd3 changes for MPW by Guido van Rossum · 29 years ago
  74. 8239f0f fix leaks by Guido van Rossum · 30 years ago
  75. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  76. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  77. 7b1e974 Makefile.pre.in: add $(OPT) to link command by Guido van Rossum · 30 years ago
  78. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  79. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  80. e22e644 * config.c: different default PYTHONPATH for MS-DOS by Guido van Rossum · 31 years ago
  81. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  82. 9e90a67 * pythonmain.c: -k option, usage message, more environment flags. by Guido van Rossum · 31 years ago
  83. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  84. 0b0db8e Added separate main program for the Mac: macmain.c by Guido van Rossum · 32 years ago
  85. 775f4da * Makefile: use cp -r to install the library by Guido van Rossum · 32 years ago
  86. a2b7f40 * Configure.py: use #!/usr/local/bin/python by Guido van Rossum · 32 years ago
  87. 6d946f9 * macmodule.c: include allobjects.h, not .c by Guido van Rossum · 32 years ago
  88. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  89. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 32 years ago
  90. ed233a5 Changes for new UNIX-specific built-in module 'select' and new header for by Guido van Rossum · 32 years ago
  91. dfd6e46 Fix for SEQUENT by Jaap Vermeulen by Guido van Rossum · 32 years ago
  92. f1644a5 Don't define DO_TIMES (now in posixmodule.c) by Guido van Rossum · 32 years ago
  93. 2762f25 Initialized sigsave to shut lint up by Guido van Rossum · 32 years ago
  94. 27aaa6d Add interface to times(2). by Guido van Rossum · 32 years ago
  95. 0bb1a51 AIX fix. by Guido van Rossum · 33 years ago
  96. 00c567c All mac compilers now use 1904 as the Epoch... by Guido van Rossum · 33 years ago
  97. 1d2a9ad Generalize to macintosh; forget Think 3.0. by Guido van Rossum · 33 years ago
  98. 6a1f54c Include sys/select.h for IBM R2 by Guido van Rossum · 33 years ago
  99. 80c9d88 New hacks for include files to get time_t in the most portable way. by Guido van Rossum · 33 years ago
  100. 6590d4a Hack for THINK C time function. Made more functions externally visible. by Guido van Rossum · 33 years ago