1. 868f0aa issue #9090 : Take the same approach for socketmodule as daytimemodule by Kristján Valur Jónsson · 11 years ago
  2. 6ebc8f3 Issue #9090 : Error code 10035 calling socket.recv() on a socket with a timeout by Kristján Valur Jónsson · 11 years ago
  3. 0d68ab3 Plug a leak in timemodule. The module dictionary is saved during by Gregory P. Smith · 12 years ago
  4. 792eb5d Issue #10762: Guard against invalid/non-supported format string '%f' on Windows. Patch Santoso Wijaya. by Senthil Kumaran · 13 years ago
  5. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  6. 6233b36 Merged revisions 87919 via svnmerge from by Alexander Belopolsky · 13 years ago
  7. 561b96f Merged revisions 86542,87136,87216,87221,87228,87256,87337-87338,87372,87516,87571,88164 via svnmerge from by R. David Murray · 13 years ago
  8. 8009e8e Merged revisions 87648,87656 via svnmerge from by Alexander Belopolsky · 14 years ago
  9. 3b818bf Issue #8899: time.struct_time now has class and atribute docstrings. by Alexander Belopolsky · 14 years ago
  10. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  11. 6ef9fd7 Fix whitespace. by Brett Cannon · 15 years ago
  12. 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 15 years ago
  13. fd4c872 issue 4804: Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid. by Kristján Valur Jónsson · 15 years ago
  14. 083902a Issue 3289. Removed two lines that ended doing nothing. by Facundo Batista · 16 years ago
  15. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  16. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  17. 28112d0 type by Skip Montanaro · 16 years ago
  18. 9e0fa7a Declare inittimezone static. by Skip Montanaro · 16 years ago
  19. fc070d2 add %f format to datetime - issue 1158 by Skip Montanaro · 16 years ago
  20. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
  21. 8d993aa Fix the docstrings of time.localtime() and gmtime() for the tm_mday field. by Brett Cannon · 17 years ago
  22. 30712ab In Windows' time.clock(), when QueryPerformanceFrequency() fails, by Georg Brandl · 17 years ago
  23. fd7e162 Fix typo. by Walter Dörwald · 18 years ago
  24. 468e45e Remove an XXX marker in a comment. by Brett Cannon · 18 years ago
  25. caebe22 Fix bug #1520914. Starting in 2.4, time.strftime() began to check the bounds by Brett Cannon · 18 years ago
  26. 74c3ea0 Fix build problems with the platform SDK on windows. It is not sufficient to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too. by Kristján Valur Jónsson · 18 years ago
  27. f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. by Kristján Valur Jónsson · 18 years ago
  28. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  29. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  30. c285e62 Repair idiot typo, and complete the job of trying to by Tim Peters · 18 years ago
  31. 7a822da Some Win64 pre-release in 2000 didn't support by Tim Peters · 18 years ago
  32. 378d592 Patch #1490224: set time.altzone correctly on Cygwin. by Georg Brandl · 18 years ago
  33. d06b6f2 Patch 1471925 - Weak linking support for OSX by Ronald Oussoren · 18 years ago
  34. 19ab6c9 Initialize structseq types only once. by Martin v. Löwis · 18 years ago
  35. 7cbc0f5 C++ compiler changes. casts, rename variables with reserved names. by Anthony Baxter · 18 years ago
  36. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  37. f901abd allow ctime(), gmtime(), and localtime() to take None as equivalent to an omitted arg by Fred Drake · 20 years ago
  38. dc8e194 Fix SF #994580, typo in time.tzsets docstring. Backport candidate by Neal Norwitz · 20 years ago
  39. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
  40. 298c380 Raise ValueError when value being stored in a time_t variable will result in by Brett Cannon · 20 years ago
  41. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 20 years ago
  42. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  43. 20def8b Make temporary change of using _strptime for time.strptime permanent. by Brett Cannon · 21 years ago
  44. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  45. 502168a SF patch #718867: Fix reference leak for time.strptime by Raymond Hettinger · 21 years ago
  46. d11b62e - New function time.tzset() provides access to the C library tzet() by Guido van Rossum · 21 years ago
  47. 513a1cd Windows flavor of floatsleep(): folded long lines, introduced a temp by Tim Peters · 21 years ago
  48. 8b19a93 When time.localtime() is passed a tick count the platform C localtime() by Tim Peters · 21 years ago
  49. 60a5d72 Patch #623780: Replace obsolete struct macros. by Martin v. Löwis · 22 years ago
  50. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  51. d3c46d5 Patch to call the Pure python strptime implementation if there's no by Guido van Rossum · 22 years ago
  52. 975e392 Fix bug 581232 - [Windows] Can not interrupt time.sleep() by Mark Hammond · 22 years ago
  53. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  54. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  55. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  56. 9bb7432 Remove all but one use of the module dict. by Fred Drake · 22 years ago
  57. 193a3f6 Update docstrings to use te attribute names of the new structures returned by Fred Drake · 22 years ago
  58. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  59. 9ad4b68 Windows time_clock(): rewrite to get rid of horrid casting tricks. by Tim Peters · 22 years ago
  60. 7ba5e81 Ensure we also build on VC7. Involves replacing largeint.h helper functions with msvc's native 64 bit integers. by Mark Hammond · 22 years ago
  61. 02af964 Patch #504225: add plan9 ifdef to timemodule floatsleep. by Martin v. Löwis · 22 years ago
  62. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  63. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  64. b3cfc1d Patch #481718: Time module doc string changes. by Martin v. Löwis · 23 years ago
  65. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  66. 98bf58f SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. by Guido van Rossum · 23 years ago
  67. 10b164a SF patch #459385 (Norman Vine): time.timezone fix for Cygwin. by Guido van Rossum · 23 years ago
  68. 1a10aac make the gettmarg error message more correct by making it more vague ;-) by Skip Montanaro · 23 years ago
  69. 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
  70. 58e0a8c SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen. by Tim Peters · 23 years ago
  71. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 23 years ago
  72. 26ae7cd SF patch 407758, "timemodule patches for Cygwin", from Norman Vine. by Tim Peters · 23 years ago
  73. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  74. 258ccd4 Fix typo in RISCOS patch inside MS #ifdef. (Probably my own fingers.) by Guido van Rossum · 23 years ago
  75. 48a680c RISCOS changes by dschwertberger. by Guido van Rossum · 23 years ago
  76. fe38525 Make the 'time' argument to the timemodule functions strftime, asctime, by Thomas Wouters · 23 years ago
  77. 63596ae The Mac C library (MSL from CodeWarrior 6) and I/O library (GUSI by Jack Jansen · 24 years ago
  78. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  79. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  80. 56221a7 Chris Herborth <chrish@pobox.com>: Minor updates for BeOS R5. by Fred Drake · 24 years ago
  81. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
  82. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
  83. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  84. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  85. ed77bac Fix floattime prototype ((void), not (double)) by Thomas Wouters · 24 years ago
  86. 58d0510 ANSIfy some more forward declarations. by Thomas Wouters · 24 years ago
  87. 770e404 ANSIfy yet another hidden function definition. by Thomas Wouters · 24 years ago
  88. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
  89. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  90. 416d413 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  91. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  92. ee398fa Mac only: two epoch problem workarounds are no longer needed for GUSI by Jack Jansen · 24 years ago
  93. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  94. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  95. 0e12395 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  96. dfb4ebd Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  97. fa48116 Trent Mick: use size_t instead of int where appropriate (time_strftime()). by Guido van Rossum · 24 years ago
  98. aff6018 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  99. c410e92 Jack Jansen: by Guido van Rossum · 24 years ago
  100. c24ca4b Fix probable bug; if errno == EINTR, floatsleep() doesn't break out of by Andrew M. Kuchling · 24 years ago