1. 12cf60c Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 8 years ago
  2. 64a1e7c Merged revisions 87251 via svnmerge from by R. David Murray · 14 years ago
  3. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  4. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  5. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  6. c211a0a #1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje Nikšić. by Georg Brandl · 16 years ago
  7. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  8. 7ff54e7 C++ compiler cleanup: migrate to modsupport.h by Skip Montanaro · 18 years ago
  9. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  10. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  11. 4fe4ed2 Make mktuple consistent with mklist to get rid of Coverity warnings. Also use macro version of SetItem since we know everything is setup. by Neal Norwitz · 18 years ago
  12. 3e90fa5 Try to cleanup the error handling a bit so there aren't false positives by Neal Norwitz · 18 years ago
  13. 0b300be Fix more memory leaks. Will backport to 2.4. by Martin v. Löwis · 18 years ago
  14. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  15. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  16. 35c3f4f do_mkvalue(), 'I' and 'k' cases: squash legitimate by Tim Peters · 19 years ago
  17. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  18. f06e30a bug #1281408: make Py_BuildValue work with unsigned longs and long longs by Georg Brandl · 19 years ago
  19. 7bcabc6 Fix a few more memory leaks by Neal Norwitz · 19 years ago
  20. c849e63 This is Pete Shinners' patch from his bug report by Michael W. Hudson · 20 years ago
  21. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  22. f8d59d2 Patch #828384: Don't discard nested exception in AddObject. by Martin v. Löwis · 21 years ago
  23. c44dbc4 Better error message by Jeremy Hylton · 21 years ago
  24. dbd6503 dded missing k and K format specifiers to Py_BuildValue and friends. by Jack Jansen · 21 years ago
  25. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  26. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 21 years ago
  27. ceead6d Style consistency, so "grep ^function ..." works as expected. by Fred Drake · 21 years ago
  28. bbfd859 Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_DECREF by Just van Rossum · 22 years ago
  29. 233cc59 Py_InitModule4(): Accept NULL for the 'methods' argument. This makes by Fred Drake · 22 years ago
  30. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  31. 8311518 PyModule_AddObject(): Added missing exceptions. Closes SF bug #523473. by Fred Drake · 22 years ago
  32. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  33. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  34. 289898c Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed, by Fred Drake · 23 years ago
  35. e5006eb This patch turns the Python API mismatch notice into a standard by Marc-André Lemburg · 23 years ago
  36. aec7924 Py_BuildValue(): Add "D" conversion to create a Python complex value from by Fred Drake · 23 years ago
  37. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  38. 9e28515 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
  39. b763b9d Cast UCHAR_MAX to int before doing the comparison for overflow of the by Jack Jansen · 24 years ago
  40. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  41. 413407f Add a test that Py_IsInitialized() in Py_InitModule4(). See by Guido van Rossum · 24 years ago
  42. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  43. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  44. d50338f Added support for H (unsigned short) specifier in PyArg_ParseTuple and by Jack Jansen · 24 years ago
  45. 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
  46. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  47. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  48. 582acec Trent Mick's Win64 changes: size_t vs. int or long; also some overflow tests. by Guido van Rossum · 24 years ago
  49. 25d3447 Brian Hooper <brian_takashi@hotmail.com>: by Fred Drake · 24 years ago
  50. 3dbba6e Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. by Guido van Rossum · 25 years ago
  51. c38e7d4 Oops, forgot a pair of {}'s. (Greg Couch) by Guido van Rossum · 26 years ago
  52. d341500 Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF. by Guido van Rossum · 26 years ago
  53. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  54. c4099e6 # Fix strange type (methonname instead of methodname). by Guido van Rossum · 26 years ago
  55. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  56. 233f4b5 Two error messages still used the old name of the functio mkvalue() -- by Guido van Rossum · 26 years ago
  57. db847bd Plug memory leak in Py_BuildValue when using {...} to construct dictionaries. by Guido van Rossum · 27 years ago
  58. 2e58ff3 Fix importing of shared libraries from inside packages. by Guido van Rossum · 27 years ago
  59. 40b33c6 Removed fatal errors from Py_Initmodule4() (and thus from by Guido van Rossum · 27 years ago
  60. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  61. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  62. 996e6dc Corrected format string in api_version_warning. by Sjoerd Mullender · 28 years ago
  63. 59461c7 use PROTO macro around fn prototype by Guido van Rossum · 29 years ago
  64. d1b9393 support "O&" taking an object constructor a void* by Guido van Rossum · 29 years ago
  65. 2ac3bc2 rename method arg because of typedef conflict by Guido van Rossum · 29 years ago
  66. 970a0a2 api version checking by Guido van Rossum · 29 years ago
  67. 50620fa New newmethodobject() interface takes struct methodlist pointer by Guido van Rossum · 30 years ago
  68. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  69. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  70. fe3f1a2 * Python/{modsupport.c,getargs.c,Makefile.in}, by Guido van Rossum · 30 years ago
  71. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  72. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  73. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  74. bf80e54 * stdwinmodule.c: various new commands: setwin{pos,size}, by Guido van Rossum · 31 years ago
  75. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 31 years ago
  76. a2b7f40 * Configure.py: use #!/usr/local/bin/python by Guido van Rossum · 32 years ago
  77. a93265a suppress unnecessary error message if too many arguments are passed by Guido van Rossum · 32 years ago
  78. 96caaee check for embedded \0 in strings for z and s formats by Guido van Rossum · 32 years ago
  79. 899dcf3 Added parameter decls to do_mkvalue for non-template machines by Guido van Rossum · 32 years ago
  80. fc61adb Merged with Steve Miale's version by Guido van Rossum · 32 years ago
  81. 3cfe6fa Added mkvalue() function by Guido van Rossum · 32 years ago
  82. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  83. 292bb8e Shut up lint by Guido van Rossum · 32 years ago
  84. 922cfad New getargs() function: a single varargs function, by Guido van Rossum · 32 years ago
  85. c060229 Add "varargs" attribute. by Guido van Rossum · 33 years ago
  86. c5da350 getlonglongargs --> getlonglongarg Added getlongobjectarg. by Guido van Rossum · 33 years ago
  87. 139e57b Support for long integers by Guido van Rossum · 33 years ago
  88. ef0068f Added getintintintarg() (3 int args) by Guido van Rossum · 33 years ago
  89. 7a904ed Moved get*doublearg() routines here from mathmodule.c by Guido van Rossum · 33 years ago
  90. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  91. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  92. 68c35d0 Move err_badarg() and err_nomme() to errors.c. by Guido van Rossum · 34 years ago
  93. 85a5fbb Initial revision by Guido van Rossum · 34 years ago