1. 0cc3ea6 Revert the following revisions, as they don't fix security by Martin v. Löwis · 17 years ago
  2. e250562 [Bug #1579796] Wrong syntax for PyDateTime_IMPORT in documentation. Reported by David Faure. by Andrew M. Kuchling · 19 years ago
  3. 86933f5 Minor edits by Andrew M. Kuchling · 19 years ago
  4. c7521c9 Typo in tp_clear docs. (backport from rev. 51368) by Georg Brandl · 19 years ago
  5. dbd6958 Bug #1541682: Fix example in the "Refcount details" API docs. by Georg Brandl · 19 years ago
  6. d703f45 Fix typo. by Georg Brandl · 19 years ago
  7. 9083f93 Bug #1536828: typo: TypeType should have been StringType. by Georg Brandl · 19 years ago
  8. eac8737 Clarify docs for bf_getcharbuffer. by Brett Cannon · 19 years ago
  9. 9548256 fix markup glitch(backport from rev.45778) by George Yoshida · 19 years ago
  10. 0ab63d8 Bug #1464658: make clear that PyList_GetItem doesn't take negative indices. by Georg Brandl · 19 years ago
  11. dec4326 - update the refcount information (late, but not a bad thing to do...) by Fred Drake · 19 years ago
  12. 022a55c update - still some old .cvsignore files lying around by Anthony Baxter · 19 years ago
  13. 2aaf918 Patch #1415507: clarify docs on reference stealing by Georg Brandl · 20 years ago
  14. b9c3283 bug #1281408: make Py_BuildValue work with unsigned longs and long longs by Georg Brandl · 20 years ago
  15. aea9bca Backport: SF bug #1323739, C API doc for PySequence_Tuple duplicated by Neal Norwitz · 20 years ago
  16. 7bd3306 backport Py_UNICODE clarification by Skip Montanaro · 20 years ago
  17. 35425f1 backport of bugfix [ 1306449 ] PyString_AsStringAndSize() return value documented wrong by Georg Brandl · 20 years ago
  18. bcafbbe fix typo by Georg Brandl · 20 years ago
  19. 9366067 - Correct PyBool_FromLong's return type and its description. by Georg Brandl · 20 years ago
  20. ea25784 backport bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated by Georg Brandl · 20 years ago
  21. 8d751fa Fix name from PyDate_FromDateAndTime to PyDateTime_FromDateAndTime. by Brett Cannon · 21 years ago
  22. 150d61d Update refences to "Macintosh" to reflect the state of affairs for OS X and not by Brett Cannon · 21 years ago
  23. 96ee1c4 Clean up discussion of new C thread idiom (closes SF patch #1031233; modified) by Fred Drake · 21 years ago
  24. 1498d63 SF Patch #1093896: miscellaneous doc typos by Raymond Hettinger · 21 years ago
  25. e0c80c3 SF bug #1082944: Incorrect docs for PyUnicode_TailMatch by Raymond Hettinger · 21 years ago
  26. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 21 years ago
  27. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 21 years ago
  28. 975e725 Fix typo in PyDict_Items doc by Nicholas Bastin · 21 years ago
  29. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 21 years ago
  30. 336e85f Patch #900727: Add Py_InitializeEx to allow embedding without signals. by Martin v. Löwis · 21 years ago
  31. f54ac7e Spelling fix by Andrew M. Kuchling · 21 years ago
  32. 4eb1a00 [Patch #1003861 from Dima Dorfman] Fix markup in concrete.tex: by Andrew M. Kuchling · 21 years ago
  33. 672d2ba Use LaTeX markup by Andrew M. Kuchling · 21 years ago
  34. fe80b63 [Bug #991883] Document calling condition by Andrew M. Kuchling · 21 years ago
  35. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 21 years ago
  36. 2be406b let's avoid the extra nesting where reasonable by Fred Drake · 21 years ago
  37. 7fdd92f Fix typo though by Neal Norwitz · 21 years ago
  38. 829d6c4 Fix doubled word. by Raymond Hettinger · 21 years ago
  39. fd7dc51 Typo repair. by Tim Peters · 21 years ago
  40. 0c6199e Completed a sentence I left dangling. by Tim Peters · 21 years ago
  41. cfd575d PyImport_ImportModule, PyImport_ImportModuleEx, PyImport_ExecCodeModule: by Tim Peters · 21 years ago
  42. 6d3db70 Add missing doc for Py_True/Py_False. Use the correct macro to define by Skip Montanaro · 21 years ago
  43. 33ee76a A little boolean music if you please, maestro... (Not sure I have the by Skip Montanaro · 21 years ago
  44. e03664f Two typo fixes by Andrew M. Kuchling · 21 years ago
  45. fe08083 Fix an uncorrect function prototype. Will backport to release23-maint. by Thomas Heller · 21 years ago
  46. 8ff9f9f Supply missing word in new datetime docs, aggravated by copy-paste-edit. by Tim Peters · 21 years ago
  47. eda2930 Formalize that the Py_VISIT macro requires that the tp_traverse by Tim Peters · 21 years ago
  48. aa6389e Documented the new Py_VISIT macro to simplify implementation of by Jim Fulton · 21 years ago
  49. 8c5aeaa Implemented a new Py_CLEAR macro. This macro should be used when by Jim Fulton · 21 years ago
  50. e45d5a3 Claifications: visit procs are supplied by the core, users aren't by Tim Peters · 21 years ago
  51. 183dabc SF patch 986010: add missing doc for datetime C API, from Anthony Tuininga. by Tim Peters · 21 years ago
  52. 711e7d9 Add PyArg_VaParseTupleAndKeywords(). Document this function and by Brett Cannon · 21 years ago
  53. d9dfe02 Remove a few elderly sentences by Andrew M. Kuchling · 21 years ago
  54. ff8113f Replace example with simpler alternative using PyGILState_{Ensure,Require). Can someone please confirm this change is OK? by Andrew M. Kuchling · 21 years ago
  55. 371d98a [Bug #987835] Add documentation from PEP 311. (Untested TeX code.) by Andrew M. Kuchling · 21 years ago
  56. ee5e4cd [Bug #984017] Incorrect prototype, fixed by Timothy Stranex by Andrew M. Kuchling · 21 years ago
  57. d88471f Change signatures for arguments to "s" and friends to be the proper ``const by Brett Cannon · 21 years ago
  58. 6d3a0d2 [Bug #948970] Add PyExc_* symbols to index. by Andrew M. Kuchling · 21 years ago
  59. ef82d2f Patch #923098: Share interned strings in marshal. by Martin v. Löwis · 21 years ago
  60. 9ddf40b SF patch 876130: add C API to datetime module, from Anthony Tuininga. by Tim Peters · 21 years ago
  61. d68d3ee Note that memory returned by PyBuffer_New is not specifically aligned. by Neil Schemenauer · 21 years ago
  62. 1b50b43 [Bug #936837] Add missing word by Andrew M. Kuchling · 21 years ago
  63. 9bc4f2d Drop claims that Unicode always means UCS-2. Fixes #881861. by Martin v. Löwis · 21 years ago
  64. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 21 years ago
  65. dd07e59 Document PyModule_AddIntConstant to take a long. Fixes #962471. by Martin v. Löwis · 21 years ago
  66. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 21 years ago
  67. 043fff0 minor wording cleanup by Fred Drake · 21 years ago
  68. e9c2ecf Removed 'U' from the documentation for Py_BuildValue to bring it in line by Nicholas Bastin · 21 years ago
  69. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 21 years ago
  70. e5fced7 SF bug #936827: PyNumber_And() 's description by Raymond Hettinger · 21 years ago
  71. 34c4320 Emphasize the requirement that Python.h be included first more strongly. by Fred Drake · 21 years ago
  72. d0c3b26 improve the very-high-level API docs (contributed by Jeff Epler) by Fred Drake · 21 years ago
  73. 8530951 Remove note that PyErr_SetInterrupt() is obsolete; add comment about the by Fred Drake · 21 years ago
  74. 5232f50 SF bug: #921927: Fixed a typo/thinko spelling "parameter" as "paramter" by Raymond Hettinger · 21 years ago
  75. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 21 years ago
  76. 65d6342 Minor grammatical fixes. by Brett Cannon · 21 years ago
  77. 9b976e6 Extremely minor typo fixed. by Brett Cannon · 21 years ago
  78. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 21 years ago
  79. 70a30e8 markup correction by Fred Drake · 22 years ago
  80. d3f4a1a Patch #893566: Document that tp_dealloc may be called from any thread. by Martin v. Löwis · 22 years ago
  81. 8178a22 Documentation for PyDescr_NewClassMethod was missing - here's at least by Thomas Heller · 22 years ago
  82. 4cd5a08 Fix small factual error. by Raymond Hettinger · 22 years ago
  83. 7a700b8 clean up indexing for None, NotImplemented closes SF bug #820344 by Fred Drake · 22 years ago
  84. f72af65 At 2.2, the Py<type>_Check() family of API functions (macros) changed by Andrew MacIntyre · 22 years ago
  85. 13cd889 The semantics of PyList_Check() and PyDict_Check() changed at 2.2, along by Andrew MacIntyre · 22 years ago
  86. 5469324 Note that \var{ppos} values are not consecutive and should not be altered. by Raymond Hettinger · 22 years ago
  87. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 22 years ago
  88. e180307 Fix missing paren. by Raymond Hettinger · 22 years ago
  89. 2619c9e SF patch #838938: Typos in the docs (Extending/Embedding + Python/C API) by Raymond Hettinger · 22 years ago
  90. bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 22 years ago
  91. 28eae08 fix use of undefined markup by Fred Drake · 22 years ago
  92. 35d8360 Document Py_RETURN_NONE. by Brett Cannon · 22 years ago
  93. 5ce2fec Patch #837322: Clarify owning, borrowing, stealing. Backported to 2.3. by Martin v. Löwis · 22 years ago
  94. 9c7ed4c Document that varlist can be NULL. by Raymond Hettinger · 22 years ago
  95. 01a74b2 Make CObjects mutable. Fixes #477441. by Martin v. Löwis · 22 years ago
  96. 95cf84a Patch #821093: Fix various typos. by Martin v. Löwis · 22 years ago
  97. 7decf5e SF #822262, Typo in Doc/api/intro.tex by Neal Norwitz · 22 years ago
  98. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 22 years ago
  99. 92016dc SF 810242. Fix doubled word errors. by Raymond Hettinger · 22 years ago
  100. 4ccf6e7 fix \NULL with following space and no {} by Fred Drake · 22 years ago