| Commit message (Expand) | Author | Age | Files | Lines |
* | Use the correct markup for args | Ezio Melotti | 2010-01-30 | 1 | -7/+7 |
|
|
* | Relocate a couple of stars and remove redundant backticks | Ezio Melotti | 2010-01-30 | 1 | -4/+4 |
|
|
* | Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a | Mark Dickinson | 2010-01-30 | 1 | -0/+13 |
|
|
* | Fix description for Py_GetPath(); it sounded like it always returned sys.path. | Georg Brandl | 2010-01-07 | 1 | -8/+9 |
|
|
* | :stmt: -> :keyword: | Ezio Melotti | 2010-01-03 | 1 | -1/+1 |
|
|
* | Correct documentation for s* z* and w*, the argument that should be passed | Gregory P. Smith | 2010-01-02 | 1 | -3/+3 |
|
|
* | check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) | Benjamin Peterson | 2009-12-30 | 1 | -1/+4 |
|
|
* | #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new ... | Georg Brandl | 2009-12-28 | 1 | -0/+9 |
|
|
* | #7577: fix signature of PyBuffer_FillInfo(). | Georg Brandl | 2009-12-28 | 1 | -1/+1 |
|
|
* | Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. | Mark Dickinson | 2009-12-21 | 1 | -0/+13 |
|
|
* | #7388: "python".capitalize() in the Doc | Ezio Melotti | 2009-12-19 | 1 | -2/+2 |
|
|
* | #7521: remove Py_GetBuildNumber(), which was removed in favor of Py_GetBuildI... | Georg Brandl | 2009-12-19 | 1 | -9/+0 |
|
|
* | Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, | Mark Dickinson | 2009-11-15 | 2 | -0/+32 |
|
|
* | Deprecate PyOS_ascii_strtod and PyOS_ascii_atof, and document the replacement... | Mark Dickinson | 2009-10-31 | 1 | -2/+43 |
|
|
* | Issue #7169: Document PyFloat_AsString and PyFloat_AsReprString, and note tha... | Eric Smith | 2009-10-19 | 1 | -0/+24 |
|
|
* | #6881 - fixed wrong return type; improved the formatting | Ezio Melotti | 2009-09-20 | 1 | -10/+19 |
|
|
* | #6930: clarify description about byteorder handling in UTF decoder routines. | Georg Brandl | 2009-09-18 | 1 | -12/+17 |
|
|
* | Fix issue #1590864, multiple threads and fork() can cause deadlocks, by | Thomas Wouters | 2009-09-16 | 1 | -0/+16 |
|
|
* | Py_SetPythonHome uses static storage #6913 | Benjamin Peterson | 2009-09-15 | 1 | -0/+4 |
|
|
* | #6821: fix signature of PyBuffer_Release(). | Georg Brandl | 2009-09-02 | 1 | -2/+2 |
|
|
* | #6658: fix two typos. | Georg Brandl | 2009-08-06 | 1 | -2/+2 |
|
|
* | #6336: Add nb_divide. | Georg Brandl | 2009-07-29 | 1 | -0/+1 |
|
|
* | builtin -> built-in. | Georg Brandl | 2009-07-26 | 3 | -6/+6 |
|
|
* | Dont put "void" in signature for nullary functions. | Georg Brandl | 2009-07-24 | 7 | -9/+10 |
|
|
* | Fix arg types of et#. | Georg Brandl | 2009-07-24 | 1 | -1/+1 |
|
|
* | Fix style. | Georg Brandl | 2009-07-11 | 1 | -4/+4 |
|
|
* | #6255: document PyInt_FromSize_t. | Georg Brandl | 2009-06-17 | 1 | -0/+9 |
|
|
* | #5967: note that the C slicing APIs do not support negative indices. | Georg Brandl | 2009-06-04 | 1 | -4/+6 |
|
|
* | fix signature | Benjamin Peterson | 2009-05-31 | 1 | -1/+1 |
|
|
* | Fix some more small markup problems. | Georg Brandl | 2009-05-30 | 1 | -5/+5 |
|
|
* | Issue 5954, PyFrame_GetLineNumber: | Jeffrey Yasskin | 2009-05-08 | 1 | -0/+5 |
|
|
* | PyCode_NewEmpty: | Jeffrey Yasskin | 2009-05-08 | 2 | -0/+51 |
|
|
* | Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio... | Eric Smith | 2009-05-05 | 1 | -4/+4 |
|
|
* | #5840: dont claim we dont support TLS. | Georg Brandl | 2009-04-27 | 1 | -4/+3 |
|
|
* | Demote warnings to notices where appropriate, following the goal that as few ... | Georg Brandl | 2009-04-27 | 1 | -1/+1 |
|
|
* | Note that the caller is resposible for freeing the result of PyOS_double_to_s... | Eric Smith | 2009-04-26 | 1 | -1/+2 |
|
|
* | Mostly formatting nits, and "and-ed together" -> "or-ed together" flags. | Georg Brandl | 2009-04-26 | 1 | -22/+23 |
|
|
* | Issue #5835, deprecate PyOS_ascii_formatd. | Eric Smith | 2009-04-25 | 1 | -0/+35 |
|
|
* | Issue #4129: document int -> Py_ssize_t changes. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+133 |
|
|
* | Issue #4129: field changed from int to Py_ssize_t. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+4 |
|
|
* | Issue #4129: more int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+12 |
|
|
* | Issue #4129: more int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+16 |
|
|
* | Issue #4129: int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+8 |
|
|
* | Issue #4129: int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+12 |
|
|
* | Reformat prior to editing. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -12/+13 |
|
|
* | Issue #4129: int -> Py_ssize_t documentation. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+4 |
|
|
* | Reformat prior to editing. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -32/+34 |
|
|
* | Since it's a macro, actually refer to it as such instead of function. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -6/+6 |
|
|
* | Issue #4129: Add a versionchanged notice for a few forgotten entries. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -0/+12 |
|
|
* | Reformat, since I've been busy here anyway. | Jeroen Ruigrok van der Werven | 2009-04-25 | 1 | -34/+37 |
|
|