1. 8abc935 Better explain the buffer interface (hopefully) by Antoine Pitrou · 14 years ago
  2. 18d378d Fix markup. by Georg Brandl · 14 years ago
  3. 6d9839d Add versionchanged for parameter type changes. by Martin v. Löwis · 14 years ago
  4. dd59097 Adjust PySlice_GetIndices documentation to signature change. by Martin v. Löwis · 14 years ago
  5. fbb56ed Remove visible XXX comments. by Georg Brandl · 14 years ago
  6. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  7. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  8. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  9. de0ab5e #10597: fix Py_SetPythonHome docs by pointing to where the meaning of PYTHONHOME is already documented. by Georg Brandl · 14 years ago
  10. f7f5a82 #10594: fix parameter names in PyList API docs. by Georg Brandl · 14 years ago
  11. a66e029 Make doc for PyErr_Format() up to date. by Antoine Pitrou · 14 years ago
  12. 4f13d61 assert.h is also included. Thanks to Savio Sena. by Georg Brandl · 14 years ago
  13. 5a93265 #10468: document Unicode exception creation and access functions. by Georg Brandl · 14 years ago
  14. bab3378 #10439: document PyCodec C APIs. by Georg Brandl · 14 years ago
  15. 3c6830c update items/keys/values doc #10300 by Benjamin Peterson · 14 years ago
  16. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  17. f285bcc Be consistent in the spelling of thread-safe(ty). by Georg Brandl · 14 years ago
  18. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  19. 12c695c #5121: fix claims about default values leading to segfaults. by Georg Brandl · 14 years ago
  20. 2aff335 #9204: remove mentions of removed types in the types module. by Georg Brandl · 14 years ago
  21. 418cc73 Fix capitalization. by Georg Brandl · 14 years ago
  22. dd909db #10058: tweak wording about exception returns. by Georg Brandl · 14 years ago
  23. d0b0e1d #6798: fix wrong docs for the arguments to several trace events. by Georg Brandl · 14 years ago
  24. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  25. 62165d6 Document that the 'strict' error handler is used to encode/decode filenames on by Victor Stinner · 14 years ago
  26. 257d38f Issue #9738: Document PyErr_SetString() and PyErr_SetFromErrnoWithFilename() by Victor Stinner · 14 years ago
  27. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  28. fa4f7f9 Fix spelling and markup. by Georg Brandl · 14 years ago
  29. 60203b4 Migrate to Sphinx 1.0 C language constructs. by Georg Brandl · 14 years ago
  30. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  31. d0ffa4c Fix weird markup that caused latex to fail. by Georg Brandl · 14 years ago
  32. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  33. c663b58 Give a dedicated page to memoryview objects, so that they can be part by Antoine Pitrou · 14 years ago
  34. f7ba2fa Buffers are not sequence objects (!). Put them in the abstract objects layers by Antoine Pitrou · 14 years ago
  35. 99a00a4 Various improvements to the docs of the buffer API by Antoine Pitrou · 14 years ago
  36. a0b6873 Discourage use of the old buffer API funcs by Antoine Pitrou · 14 years ago
  37. 826903e Issue #9970: improve C API documentation for memoryview objects by Antoine Pitrou · 14 years ago
  38. 3b69db2 issue 9910 by Kristján Valur Jónsson · 14 years ago
  39. b5d23b4 note version by Benjamin Peterson · 14 years ago
  40. 6faee4e #9911: doc copyedits. by Georg Brandl · 14 years ago
  41. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  42. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  43. 2b19f35 Add versionadded tag to PyUnicode_AsUnicodeCopy's doc by Victor Stinner · 14 years ago
  44. 98c07bd Doc fix: unicode() is now str() by Daniel Stutzbach · 14 years ago
  45. e4ea994 Document PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago
  46. 3cabbeb fix old markup by Benjamin Peterson · 14 years ago
  47. c14190d Add versionadded tag to PyModule_GetFilenameObject() doc by Victor Stinner · 14 years ago
  48. 6c00c14 Issue #9425: Create PyModule_GetFilenameObject() function by Victor Stinner · 14 years ago
  49. 6009ece Replace :func: by :cfunc: by Victor Stinner · 14 years ago
  50. 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 14 years ago
  51. ad5b1df Add versionadded tag to PySys_FormatStd*() functions doc by Victor Stinner · 14 years ago
  52. 7976663 Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() by Victor Stinner · 14 years ago
  53. 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 14 years ago
  54. 4d22409 Fix copy-paste error. by Georg Brandl · 14 years ago
  55. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  56. 3603cc5 Issue #9425: PyFile_FromFd() ignores the name argument by Victor Stinner · 14 years ago
  57. 7cb1319 Terminology fix: exceptions are raised, except in generator.throw(). by Georg Brandl · 14 years ago
  58. 8477f82 #8648: document UTF-7 codec functions. by Georg Brandl · 14 years ago
  59. 502c3eb #8578: mention danger of not incref'ing weak referenced object. by Georg Brandl · 14 years ago
  60. 6f93419 #9381: fix markup. by Georg Brandl · 14 years ago
  61. 1f1ccc0 #9158: Fix y* format of PyArg_Parse*() functions documentation by Victor Stinner · 14 years ago
  62. d7c3ed5 Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,80852,80854,80870,80872-80873,80907,80915-80916,80951-80952,80976-80977,80985,81038-81040,81042,81053,81070,81104-81105,81114,81125,81245,81285,81402,81463,81516,81562-81563,81567,81593,81635,81680-81681,81684,81801,81888,81931-81933,81939-81942,81963,81984,81991,82120,82188,82264-82267 via svnmerge from by Benjamin Peterson · 14 years ago
  63. 2ebf8ce Merged revisions 81881-81882 via svnmerge from by Benjamin Peterson · 14 years ago
  64. 3a23c9e Issue #9089: PyNumber_Int is no more. Remove it from the docs. by Mark Dickinson · 14 years ago
  65. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  66. 1341f57 Merged revisions 82251 via svnmerge from by Alexander Belopolsky · 14 years ago
  67. 56303e0 Merged revisions 82236 via svnmerge from by Alexander Belopolsky · 14 years ago
  68. 25e8ec4 Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use by Victor Stinner · 14 years ago
  69. 2aa3af4 Issue #8939: Improve arg.rst by Victor Stinner · 14 years ago
  70. 0460288 Further refinements to the C file API. by Antoine Pitrou · 14 years ago
  71. 5d8a6c8 Fixes to the PyFile_FromFd() doc, by Renato Cunha. by Antoine Pitrou · 14 years ago
  72. 06e49dd Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z" by Victor Stinner · 14 years ago
  73. 7909b00 Fix some bugs in c-api/arg.rst documentation by Victor Stinner · 14 years ago
  74. 3dcb5ac Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format by Victor Stinner · 14 years ago
  75. 1fbd36b Fix #8946. Extra PyObject* parameter documented which doesn't exist. by Brian Curtin · 14 years ago
  76. 69e25fa Issue #8925: fix types of Py_Parse*() and Py_BuildValue() functions by Victor Stinner · 14 years ago
  77. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  78. f978fac Merged revisions 81398 via svnmerge from by Antoine Pitrou · 14 years ago
  79. 9ca9c25 Issue #8589: Decode PYTHONWARNINGS environment variable with the file system by Victor Stinner · 14 years ago
  80. b432451 fix run-on sentence by Benjamin Peterson · 14 years ago
  81. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  82. 77c3862 Issue #8711: Document PyUnicode_DecodeFSDefault*() functions by Victor Stinner · 14 years ago
  83. f9a4442 Merged revisions 81145 via svnmerge from by Benjamin Peterson · 14 years ago
  84. 83fd9b9 Issue #8593: Fix, reorder and improve the documentation for argument parsing by Antoine Pitrou · 14 years ago
  85. 44d3d78 add versionadded by Benjamin Peterson · 14 years ago
  86. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  87. 28a691b PEP 3147 by Barry Warsaw · 14 years ago
  88. 08bf91c Merged revisions 79307,79408,79430,79533,79542,79579-79580,79585-79587,79607-79608,79622,79717,79820,79822,79828,79862,79875,79923-79924,79941-79943,79945,79947,79951-79952 via svnmerge from by Benjamin Peterson · 14 years ago
  89. 93dc9eb Merged revisions 78760,78771-78773,78802,78922,78952 via svnmerge from by Georg Brandl · 14 years ago
  90. ef871f6 Merged revisions 78859-78860 via svnmerge from by Georg Brandl · 14 years ago
  91. 68af50b Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strtod, and PyOS_ascii_atof. by Eric Smith · 15 years ago
  92. ea30c6f Merged revisions 77850-77851 via svnmerge from by Ezio Melotti · 15 years ago
  93. 93f562c Merged revisions 77842 via svnmerge from by Mark Dickinson · 15 years ago
  94. 46a9900 Merged revisions 77209,77229,77359-77360,77371 via svnmerge from by Benjamin Peterson · 15 years ago
  95. 479def3 Merged revisions 77271 via svnmerge from by Ezio Melotti · 15 years ago
  96. 2952148 Merged revisions 77242 via svnmerge from by Gregory P. Smith · 15 years ago
  97. eb6f8de Issue #6687: Moved the special-case for integers out of PyBytes_FromObject. by Alexandre Vassalotti · 15 years ago
  98. d12362a Merged revisions 77157 via svnmerge from by Benjamin Peterson · 15 years ago
  99. 1e28a27 Merged revisions 77088 via svnmerge from by Georg Brandl · 15 years ago
  100. 8668c22 Merged revisions 77081 via svnmerge from by Georg Brandl · 15 years ago