1. 2f2fee1 va_end() all va_copy()ed va_lists. by Christian Heimes · 8 years ago
  2. 0c21214 replace usage of Py_VA_COPY with the (C99) standard va_copy by Benjamin Peterson · 8 years ago
  3. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  4. ad8c83a Avoid inefficient way to call functions without argument by Victor Stinner · 8 years ago
  5. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  6. 2a95219 Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 8 years ago
  7. 13e602e Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" by Serhiy Storchaka · 8 years ago
  8. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  9. 2d854c8 Issue #20024: Py_BuildValue() now saves/restores the current exception before by Victor Stinner · 10 years ago
  10. d9c563e modsupport.c reuses Py_UNICODE_strlen() by Victor Stinner · 13 years ago
  11. ecf4fda Py_BuildValue("C") supports non-BMP characters on narrow build by Victor Stinner · 13 years ago
  12. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  13. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  14. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  15. ba1e0f4 Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) by Skip Montanaro · 15 years ago
  16. a921fb0 Py_BuildValue's 'c' code should use byte strings #5666 by Benjamin Peterson · 15 years ago
  17. a073e33 Correct a typo during previous checkin. by Amaury Forgeot d'Arc · 16 years ago
  18. a4db686 Issue #3280: like chr() already does, the "%c" format now accepts the full unicode range by Amaury Forgeot d'Arc · 16 years ago
  19. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  20. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  21. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 16 years ago
  22. 327858e Eliminate outdated usages of PyInt_GetMax. by Martin v. Löwis · 16 years ago
  23. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 16 years ago
  24. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  25. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  26. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  27. d094130 Revert r56044 (which changed the %c format specifier to accept a by Walter Dörwald · 17 years ago
  28. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  29. 6e8fcae Make module docstrings unicode objects. by Walter Dörwald · 17 years ago
  30. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  31. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  32. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  33. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  34. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 17 years ago
  35. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  36. 3e90fa5 Try to cleanup the error handling a bit so there aren't false positives by Neal Norwitz · 18 years ago
  37. 0b300be Fix more memory leaks. Will backport to 2.4. by Martin v. Löwis · 18 years ago
  38. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  39. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  40. 35c3f4f do_mkvalue(), 'I' and 'k' cases: squash legitimate by Tim Peters · 18 years ago
  41. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 18 years ago
  42. f06e30a bug #1281408: make Py_BuildValue work with unsigned longs and long longs by Georg Brandl · 19 years ago
  43. 7bcabc6 Fix a few more memory leaks by Neal Norwitz · 19 years ago
  44. c849e63 This is Pete Shinners' patch from his bug report by Michael W. Hudson · 20 years ago
  45. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  46. f8d59d2 Patch #828384: Don't discard nested exception in AddObject. by Martin v. Löwis · 21 years ago
  47. c44dbc4 Better error message by Jeremy Hylton · 21 years ago
  48. dbd6503 dded missing k and K format specifiers to Py_BuildValue and friends. by Jack Jansen · 21 years ago
  49. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  50. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 21 years ago
  51. ceead6d Style consistency, so "grep ^function ..." works as expected. by Fred Drake · 21 years ago
  52. bbfd859 Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_DECREF by Just van Rossum · 21 years ago
  53. 233cc59 Py_InitModule4(): Accept NULL for the 'methods' argument. This makes by Fred Drake · 22 years ago
  54. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  55. 8311518 PyModule_AddObject(): Added missing exceptions. Closes SF bug #523473. by Fred Drake · 22 years ago
  56. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  57. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  58. 289898c Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed, by Fred Drake · 23 years ago
  59. e5006eb This patch turns the Python API mismatch notice into a standard by Marc-André Lemburg · 23 years ago
  60. aec7924 Py_BuildValue(): Add "D" conversion to create a Python complex value from by Fred Drake · 23 years ago
  61. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  62. 9e28515 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
  63. b763b9d Cast UCHAR_MAX to int before doing the comparison for overflow of the by Jack Jansen · 24 years ago
  64. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  65. 413407f Add a test that Py_IsInitialized() in Py_InitModule4(). See by Guido van Rossum · 24 years ago
  66. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  67. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  68. d50338f Added support for H (unsigned short) specifier in PyArg_ParseTuple and by Jack Jansen · 24 years ago
  69. 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
  70. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  71. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  72. 582acec Trent Mick's Win64 changes: size_t vs. int or long; also some overflow tests. by Guido van Rossum · 24 years ago
  73. 25d3447 Brian Hooper <brian_takashi@hotmail.com>: by Fred Drake · 24 years ago
  74. 3dbba6e Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. by Guido van Rossum · 25 years ago
  75. c38e7d4 Oops, forgot a pair of {}'s. (Greg Couch) by Guido van Rossum · 25 years ago
  76. d341500 Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF. by Guido van Rossum · 25 years ago
  77. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  78. c4099e6 # Fix strange type (methonname instead of methodname). by Guido van Rossum · 26 years ago
  79. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  80. 233f4b5 Two error messages still used the old name of the functio mkvalue() -- by Guido van Rossum · 26 years ago
  81. db847bd Plug memory leak in Py_BuildValue when using {...} to construct dictionaries. by Guido van Rossum · 27 years ago
  82. 2e58ff3 Fix importing of shared libraries from inside packages. by Guido van Rossum · 27 years ago
  83. 40b33c6 Removed fatal errors from Py_Initmodule4() (and thus from by Guido van Rossum · 27 years ago
  84. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  85. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  86. 996e6dc Corrected format string in api_version_warning. by Sjoerd Mullender · 28 years ago
  87. 59461c7 use PROTO macro around fn prototype by Guido van Rossum · 29 years ago
  88. d1b9393 support "O&" taking an object constructor a void* by Guido van Rossum · 29 years ago
  89. 2ac3bc2 rename method arg because of typedef conflict by Guido van Rossum · 29 years ago
  90. 970a0a2 api version checking by Guido van Rossum · 29 years ago
  91. 50620fa New newmethodobject() interface takes struct methodlist pointer by Guido van Rossum · 29 years ago
  92. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 29 years ago
  93. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 29 years ago
  94. fe3f1a2 * Python/{modsupport.c,getargs.c,Makefile.in}, by Guido van Rossum · 30 years ago
  95. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  96. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  97. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  98. bf80e54 * stdwinmodule.c: various new commands: setwin{pos,size}, by Guido van Rossum · 31 years ago
  99. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 31 years ago
  100. a2b7f40 * Configure.py: use #!/usr/local/bin/python by Guido van Rossum · 31 years ago