1. 74b8e76 Don't repeat yourself by Christian Heimes · 16 years ago
  2. aac1316 Add check for the PyArg_ParseTuple format, and declare it if it is supported. by Martin v. Löwis · 18 years ago
  3. 3fca463 C++ compile cleanup: proper declaration of _Py_BuildValue_SizeT by Skip Montanaro · 18 years ago
  4. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  5. 36458ee aargh. Don't make last minute re-organisations before checkin! by Anthony Baxter · 18 years ago
  6. 46854bc PyAPI_FUNC() the PyArg_.*SizeT forms. Without this, cygwin has hysterics. by Anthony Baxter · 18 years ago
  7. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 18 years ago
  8. e42e405 Martin owns PEP 353 and did most of the work by Neal Norwitz · 18 years ago
  9. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  10. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  11. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  12. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  13. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  14. 711e7d9 Add PyArg_VaParseTupleAndKeywords(). Document this function and by Brett Cannon · 20 years ago
  15. 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 22 years ago
  16. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  17. e4616e6 PyArg_UnpackTuple(): New argument unpacking function suggested by Jim by Fred Drake · 23 years ago
  18. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  19. 73a3c8f The addition of new parameters to functions in the Python/C API requires by Fred Drake · 23 years ago
  20. 9e28515 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
  21. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  22. 5f37591 ANSIfications: fix empty arglists, and remove the checks for by Thomas Wouters · 24 years ago
  23. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  24. d5c84ed ANSI-fication of the sources -- remove Py_PROTO! by Fred Drake · 24 years ago
  25. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  26. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  27. 21a50bd Version updated to 1.6; API version to 1009. by Guido van Rossum · 24 years ago
  28. f1176c4 New version identification scheme. by Guido van Rossum · 26 years ago
  29. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  30. 7531d50 New API version (enough has changed!). by Guido van Rossum · 26 years ago
  31. a70d160 Define new macro Py_InitModule3(name, methods, doc) which calls by Guido van Rossum · 26 years ago
  32. ee6fd1c Add declaration for _Py_PackageContext -- needed to fix importing by Guido van Rossum · 27 years ago
  33. b4cfdfa Removed special Windows defines, at Mark Hammond's request. by Guido van Rossum · 27 years ago
  34. 15974ad Bump MS_DLL_ID to 1.5.0. by Guido van Rossum · 27 years ago
  35. 36280a7 Added PyArg_ParseTupleAndKeywords() prototype. by Guido van Rossum · 27 years ago
  36. ee5cf9b Bump API version due to the various speedup hacks. by Guido van Rossum · 27 years ago
  37. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  38. e449af7 Ellipses -> Ellipsis rename (the dictionary really says that it should by Guido van Rossum · 28 years ago
  39. 2ea0b06 Add PYTHON_API_STRING, which is PYTHON_API_VERSION as a string literal. by Guido van Rossum · 28 years ago
  40. ae8a99e Two bumps for the price of one (PYTHON_API_VERSION) by Guido van Rossum · 28 years ago
  41. e0dbd59 bump api version by Guido van Rossum · 29 years ago
  42. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 30 years ago
  43. 970a0a2 api version checking by Guido van Rossum · 30 years ago
  44. 5e56997 initmodule2 -> initmodule3 (with doc string) by Guido van Rossum · 30 years ago
  45. 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
  46. c5d92e1 ceval.h: added Py_MakePendingCalls() by Guido van Rossum · 30 years ago
  47. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  48. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  49. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  50. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  51. 5a8f824 Added declaration for mkvalue() by Guido van Rossum · 32 years ago
  52. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  53. 550fbcc New getargs() function. Define macros with conventional names, by Guido van Rossum · 32 years ago
  54. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  55. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  56. 0539ba2 Removed declarations of err_badargs [sic] and err_nomem. by Guido van Rossum · 34 years ago
  57. 85a5fbb Initial revision by Guido van Rossum · 34 years ago