1. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  2. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  3. 4dff6f6 Issue9951: update _hashopenssl and md5module to use _Py_strhex(). by Gregory P. Smith · 9 years ago
  4. 29fbd21 Remove redundant check fro md5module. by Christian Heimes · 9 years ago
  5. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  6. 501b13c Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic. by Martin v. Löwis · 10 years ago
  7. 327dd73 Issue #18742: Expose the internal hash type object for ABCs. by Christian Heimes · 11 years ago
  8. 37d5ceb Change the builtin hash algorithms' names to lower case names by Christian Heimes · 11 years ago
  9. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  10. 75e923f Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in by Christian Heimes · 11 years ago
  11. f402e92 Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in by Christian Heimes · 11 years ago
  12. 56cb125 Issue #9566: Explicit downcast to fix compiler warnings on Win64 by Victor Stinner · 12 years ago
  13. c2b4673 md5_{init,process,done}: make static by doko@ubuntu.com · 12 years ago
  14. 8f82506 Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) by Victor Stinner · 12 years ago
  15. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  16. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  17. 081fe46 Issue #9566: cast unsigned int to Py_ssize_t in md5 and sha1 modules by Victor Stinner · 13 years ago
  18. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 13 years ago
  19. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  20. 8404749 Fixed memory leak on failure. This is related to issue5403 but won't crash on py3k. by Hirokazu Yamamoto · 15 years ago
  21. 365a186 Fixes Issue #3745: Fix hashlib to always reject unicode and non by Gregory P. Smith · 15 years ago
  22. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  23. 7b9cb25 Use s* to receive data. Fixes #3552. by Martin v. Löwis · 16 years ago
  24. 3447bee Fix module initialization glitches. by Martin v. Löwis · 16 years ago
  25. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  26. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  27. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  28. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  29. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  30. 2f21eb3 Adds stand alone _md5 and _sha1 modules for use by hashlib on systems by Gregory P. Smith · 17 years ago
  31. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  32. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  33. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  34. f21a5f7 [ sf.net patch # 1121611 ] by Gregory P. Smith · 19 years ago
  35. bd2de3a typo by Skip Montanaro · 21 years ago
  36. 98a355d SF #621948, update docstring for md5 by David M. Cooke. Will backport. by Neal Norwitz · 22 years ago
  37. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  38. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
  39. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  40. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  41. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 22 years ago
  42. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 22 years ago
  43. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  44. 52a42e9 Simplify initmd5() to use PyModule_AddIntConstant(). by Fred Drake · 23 years ago
  45. 75fec2c [Patch #476612] Add attributes from PEP247 to the md5 and sha modules by Andrew M. Kuchling · 23 years ago
  46. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  47. 3ec0fbb md5_hexdigest(): After a brief conversation with TP, added hexdigest() by Barry Warsaw · 24 years ago
  48. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
  49. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
  50. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  51. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  52. 286da3b ANSI-fying by Peter Schneider-Kamp · 24 years ago
  53. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  54. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  55. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  56. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  57. 0d40ba4 Patch from Paul Sokolovsky <Paul.Sokolovsky@technologist.com>: by Fred Drake · 24 years ago
  58. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  59. d3a6a14 Doc strings by Chris Petrilli. Also added MD5Type object. by Guido van Rossum · 26 years ago
  60. 8b43b19 Renamed by Barry Warsaw · 28 years ago
  61. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  62. ef38b78 use newgetargs by Guido van Rossum · 29 years ago
  63. a320fd3 changes for MPW by Guido van Rossum · 29 years ago
  64. 524b588 Added 1995 to copyright message. by Guido van Rossum · 29 years ago
  65. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 29 years ago
  66. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  67. 66bca32 Port to Solaris 2.3. by Sjoerd Mullender · 31 years ago
  68. 13ecc7a Simplify life for md5: include (slightly modified) md5.h and md5c.c by Guido van Rossum · 31 years ago
  69. 5f59d60 * mymalloc.h: always allocate one extra byte, since some malloc's by Guido van Rossum · 32 years ago