1. 4d55bf9 #10699: fix docstring for tzset: it does not take a parameter by R. David Murray · 14 years ago
  2. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  3. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  4. ef12810 time: fix gcc warning by Victor Stinner · 14 years ago
  5. 38e2996 Issue #6608: time.asctime is now checking struct tm fields its input by Alexander Belopolsky · 14 years ago
  6. b290478 Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime() by Victor Stinner · 14 years ago
  7. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago
  8. d95a586 Issue #9012: "Separate compilation of time and datetime modules." by Alexander Belopolsky · 14 years ago
  9. 69f3fd0 Merged revisions 81756 via svnmerge from by Alexander Belopolsky · 14 years ago
  10. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  11. dc8c2ad Poor PLAN9, it isn't supported by Antoine Pitrou · 14 years ago
  12. ec79b1c Merged revisions 75020 via svnmerge from by Brett Cannon · 15 years ago
  13. 7d12c55 Merged revisions 75011 via svnmerge from by Brett Cannon · 15 years ago
  14. 6b0e51a Issue #6183: Disables wcsftime on VC6. by Hirokazu Yamamoto · 15 years ago
  15. 1b01ccd Issue #5562: Use wcsftime for time.strftime where available. by Martin v. Löwis · 15 years ago
  16. b5be6d4 re-merge r69268 (issue4804) from trunk: by Amaury Forgeot d'Arc · 15 years ago
  17. 575d133 Issue #5249: time.strftime returned malformed string when format string by Hirokazu Yamamoto · 15 years ago
  18. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  19. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  20. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  21. d218dc1 Merged revisions 62177-62178,62180-62193 via svnmerge from by Martin v. Löwis · 16 years ago
  22. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  23. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  24. 9a37159 Merged revisions 59595-59604 via svnmerge from by Christian Heimes · 17 years ago
  25. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  26. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  27. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  28. b98cda4 Patch #1314 by Christian Heimes. by Guido van Rossum · 17 years ago
  29. 8a7c866 Move definition of TZNAME_ENCODING further up. by Martin v. Löwis · 17 years ago
  30. 3bb0070 Explicitly convert tzname to Unicode. Fixes #1040. by Martin v. Löwis · 17 years ago
  31. b908126 Reorder code and decls so it's compilable with gcc 2.96 (C89). by Guido van Rossum · 17 years ago
  32. 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
  33. eda12ec Patch by Ero Carrera to get rid of PyString in timemodule.c. by Guido van Rossum · 17 years ago
  34. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  35. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  36. cf47af4 Change time.strftime() to return a unicode string. by Walter Dörwald · 17 years ago
  37. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  38. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  39. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  40. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  41. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  42. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  43. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  44. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  45. f901abd allow ctime(), gmtime(), and localtime() to take None as equivalent to an omitted arg by Fred Drake · 20 years ago
  46. dc8e194 Fix SF #994580, typo in time.tzsets docstring. Backport candidate by Neal Norwitz · 20 years ago
  47. 1b6f7a9 Bug 975996: Add _PyTime_DoubleToTimet to C API by Tim Peters · 20 years ago
  48. 298c380 Raise ValueError when value being stored in a time_t variable will result in by Brett Cannon · 20 years ago
  49. d1080a3 Have strftime() check its time tuple argument to make sure the tuple's values by Brett Cannon · 20 years ago
  50. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  51. 20def8b Make temporary change of using _strptime for time.strptime permanent. by Brett Cannon · 21 years ago
  52. a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 21 years ago
  53. 502168a SF patch #718867: Fix reference leak for time.strptime by Raymond Hettinger · 21 years ago
  54. d11b62e - New function time.tzset() provides access to the C library tzet() by Guido van Rossum · 21 years ago
  55. 513a1cd Windows flavor of floatsleep(): folded long lines, introduced a temp by Tim Peters · 22 years ago
  56. 8b19a93 When time.localtime() is passed a tick count the platform C localtime() by Tim Peters · 22 years ago
  57. 60a5d72 Patch #623780: Replace obsolete struct macros. by Martin v. Löwis · 22 years ago
  58. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  59. d3c46d5 Patch to call the Pure python strptime implementation if there's no by Guido van Rossum · 22 years ago
  60. 975e392 Fix bug 581232 - [Windows] Can not interrupt time.sleep() by Mark Hammond · 22 years ago
  61. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  62. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  63. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  64. 9bb7432 Remove all but one use of the module dict. by Fred Drake · 22 years ago
  65. 193a3f6 Update docstrings to use te attribute names of the new structures returned by Fred Drake · 22 years ago
  66. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  67. 9ad4b68 Windows time_clock(): rewrite to get rid of horrid casting tricks. by Tim Peters · 22 years ago
  68. 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
  69. 02af964 Patch #504225: add plan9 ifdef to timemodule floatsleep. by Martin v. Löwis · 23 years ago
  70. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  71. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  72. b3cfc1d Patch #481718: Time module doc string changes. by Martin v. Löwis · 23 years ago
  73. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  74. 98bf58f SF patch #462296: Add attributes to os.stat results; by Nick Mathewson. by Guido van Rossum · 23 years ago
  75. 10b164a SF patch #459385 (Norman Vine): time.timezone fix for Cygwin. by Guido van Rossum · 23 years ago
  76. 1a10aac make the gettmarg error message more correct by making it more vague ;-) by Skip Montanaro · 23 years ago
  77. 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
  78. 58e0a8c SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen. by Tim Peters · 23 years ago
  79. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 23 years ago
  80. 26ae7cd SF patch 407758, "timemodule patches for Cygwin", from Norman Vine. by Tim Peters · 23 years ago
  81. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  82. 258ccd4 Fix typo in RISCOS patch inside MS #ifdef. (Probably my own fingers.) by Guido van Rossum · 23 years ago
  83. 48a680c RISCOS changes by dschwertberger. by Guido van Rossum · 23 years ago
  84. fe38525 Make the 'time' argument to the timemodule functions strftime, asctime, by Thomas Wouters · 24 years ago
  85. 63596ae The Mac C library (MSL from CodeWarrior 6) and I/O library (GUSI by Jack Jansen · 24 years ago
  86. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  87. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  88. 56221a7 Chris Herborth <chrish@pobox.com>: Minor updates for BeOS R5. by Fred Drake · 24 years ago
  89. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
  90. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
  91. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  92. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  93. ed77bac Fix floattime prototype ((void), not (double)) by Thomas Wouters · 24 years ago
  94. 58d0510 ANSIfy some more forward declarations. by Thomas Wouters · 24 years ago
  95. 770e404 ANSIfy yet another hidden function definition. by Thomas Wouters · 24 years ago
  96. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
  97. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  98. 416d413 ANSI-fication by Peter Schneider-Kamp · 24 years ago
  99. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  100. ee398fa Mac only: two epoch problem workarounds are no longer needed for GUSI by Jack Jansen · 24 years ago