Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document PEP 352 changes. Also added GeneratorExit. | Brett Cannon | 2006-03-01 | 1 | -2/+6 |
| | |||||
* | Fix warning that texcheck complained about. | Martin v. Löwis | 2006-03-01 | 1 | -1/+1 |
| | |||||
* | markup glitch (spotted by George Yoshida) | Fredrik Lundh | 2006-03-01 | 1 | -1/+1 |
| | |||||
* | Document new Py_ssize_t API. | Martin v. Löwis | 2006-03-01 | 2 | -1/+27 |
| | |||||
* | Make documentation match the implementation. | Martin v. Löwis | 2006-03-01 | 6 | -167/+168 |
| | |||||
* | Fix casing of function names. | Georg Brandl | 2006-02-22 | 1 | -3/+3 |
| | |||||
* | fix typo | Georg Brandl | 2006-02-21 | 1 | -1/+1 |
| | |||||
* | Bug #1013800: document PyFunction_* functions | Georg Brandl | 2006-02-20 | 2 | -11/+112 |
| | |||||
* | Patch #1415507: clarify docs on reference stealing | Georg Brandl | 2006-02-18 | 1 | -3/+13 |
| | |||||
* | Bug #1432350: arrayobject should use PyObject_VAR_HEAD | Georg Brandl | 2006-02-17 | 1 | -1/+1 |
| | |||||
* | SF#1383115 | Fredrik Lundh | 2005-12-18 | 1 | -0/+5 |
| | | | | added refcount information for PyObject_Call | ||||
* | Add versionadded info | Neal Norwitz | 2005-12-18 | 1 | -0/+1 |
| | |||||
* | Expose Subversion revision number (calculated via "svnversion .") to Python. | Barry Warsaw | 2005-12-18 | 1 | -0/+6 |
| | | | | | | | Add C API function Py_GetBuildNumber(), add it to the interactive prompt banner (i.e. Py_GetBuildInfo()), and add it as the sys.build_number attribute. The build number is a string instead of an int because it may contain a trailing 'M' if there are local modifications. | ||||
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -2/+24 |
| | |||||
* | Remove .cvsignore files, as they live in svn:ignore | Martin v. Löwis | 2005-10-30 | 1 | -3/+0 |
| | | | | properties now. | ||||
* | SF bug #1323739, C API doc for PySequence_Tuple duplicated | Neal Norwitz | 2005-10-12 | 1 | -9/+5 |
| | |||||
* | Clarify the docs for Py_UNICODE. | Marc-André Lemburg | 2005-10-10 | 1 | -6/+16 |
| | |||||
* | Part of SF patch #1313939: Speedup charmap decoding by extending | Walter Dörwald | 2005-10-06 | 1 | -1/+6 |
| | | | | | | | PyUnicode_DecodeCharmap() the accept a unicode string as the mapping argument which is used as a mapping table. This code isn't used by any of the codecs yet. | ||||
* | bug [ 1306449 ] PyString_AsStringAndSize() return value documented wrong | Georg Brandl | 2005-09-28 | 1 | -2/+2 |
| | |||||
* | fix typo | Georg Brandl | 2005-09-15 | 1 | -1/+1 |
| | |||||
* | - Correct PyBool_FromLong's return type and its description. | Georg Brandl | 2005-09-03 | 1 | -251/+251 |
| | | | | - Unify function description mode ("Return X" vs "Returns X") | ||||
* | Fix PySet_Pop() notes. | Raymond Hettinger | 2005-08-21 | 1 | -2/+1 |
| | |||||
* | Add info about the set API. | Raymond Hettinger | 2005-08-20 | 1 | -0/+19 |
| | |||||
* | Expand the API notes. | Raymond Hettinger | 2005-08-17 | 1 | -4/+5 |
| | |||||
* | Note that the PyNumber protocol can access most set methods directly. | Raymond Hettinger | 2005-08-17 | 1 | -3/+10 |
| | |||||
* | Numerous fix-ups to C API and docs. Added tests for C API. | Raymond Hettinger | 2005-08-16 | 1 | -15/+21 |
| | |||||
* | Add a C API for sets and frozensets. | Raymond Hettinger | 2005-08-16 | 1 | -0/+125 |
| | |||||
* | bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated | Georg Brandl | 2005-07-17 | 1 | -2/+2 |
| | |||||
* | Add a(nother) warning about mixing Py_NewInterpreter and the | Michael W. Hudson | 2005-06-20 | 1 | -0/+6 |
| | | | | PyGILState_* functions. | ||||
* | fix some silly whitespace stuff (must have hit M-q or something?) | Michael W. Hudson | 2005-06-20 | 1 | -13/+13 |
| | |||||
* | Fix grammar (it's -> its). | Neil Schemenauer | 2005-06-18 | 2 | -2/+2 |
| | |||||
* | Function signatures for tp_descr_get and tp_descr_set. | Thomas Heller | 2005-03-24 | 1 | -1/+15 |
| | |||||
* | Fix name for PyDateTime_FromDateAndTime. | Brett Cannon | 2005-02-17 | 1 | -1/+1 |
| | | | | Closes bug #1124278. | ||||
* | Update references specifying "Macintosh" to mean OS X semantics and not Mac OS | Brett Cannon | 2005-02-13 | 2 | -5/+4 |
| | | | | | | 9. Applies patch #1095802. Thanks Jack Jansen. | ||||
* | Clean up discussion of new C thread idiom | Fred Drake | 2005-01-19 | 1 | -13/+11 |
| | | | | (closes SF patch #1031233; modified) | ||||
* | SF Patch #1093896: miscellaneous doc typos | Raymond Hettinger | 2005-01-01 | 2 | -2/+2 |
| | |||||
* | SF bug #1082944: Incorrect docs for PyUnicode_TailMatch | Raymond Hettinger | 2004-12-10 | 1 | -1/+2 |
| | | | | | * Note correct return type is int. * Note that -1 returned on failure. | ||||
* | Correct the handling of 0-termination of PyUnicode_AsWideChar() | Marc-André Lemburg | 2004-11-22 | 1 | -3/+7 |
| | | | | | | | | and its usage in PyLocale_strcoll(). Clarify the documentation on this. Thanks to Andreas Degert for pointing this out. | ||||
* | SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick | Tim Peters | 2004-10-11 | 1 | -4/+12 |
| | | | | | Coghlan, for determining whether PyEval_InitThreads() has been called. Also purged the undocumented+unused _PyThread_Started int. | ||||
* | Fix typo in PyDict_Items doc | Nicholas Bastin | 2004-09-29 | 1 | -1/+1 |
| | |||||
* | SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support | Walter Dörwald | 2004-09-07 | 1 | -0/+25 |
| | | | | | | | | | | | decoding incomplete input (when the input stream is temporarily exhausted). codecs.StreamReader now implements buffering, which enables proper readline support for the UTF-16 decoders. codecs.StreamReader.read() has a new argument chars which specifies the number of characters to return. codecs.StreamReader.readline() and codecs.StreamReader.readlines() have a new argument keepends. Trailing "\n"s will be stripped from the lines if keepends is false. Added C APIs PyUnicode_DecodeUTF8Stateful and PyUnicode_DecodeUTF16Stateful. | ||||
* | Patch #900727: Add Py_InitializeEx to allow embedding without signals. | Martin v. Löwis | 2004-08-19 | 1 | -0/+7 |
| | |||||
* | Spelling fix | Andrew M. Kuchling | 2004-08-10 | 1 | -1/+1 |
| | |||||
* | [Patch #1003861 from Dima Dorfman] Fix markup in concrete.tex: | Andrew M. Kuchling | 2004-08-07 | 1 | -10/+5 |
| | | | | | | | PyObject* o -> PyObject *o to be consistent with the rest of the file - Correct markup for Py_True - Remove duplicate description of PyBool_Check | ||||
* | Use LaTeX markup | Andrew M. Kuchling | 2004-08-07 | 1 | -1/+1 |
| | |||||
* | [Bug #991883] Document calling condition | Andrew M. Kuchling | 2004-08-07 | 1 | -1/+2 |
| | |||||
* | SF #989185: Drop unicode.iswide() and unicode.width() and add | Hye-Shik Chang | 2004-08-04 | 1 | -9/+0 |
| | | | | | | | | | | | | unicodedata.east_asian_width(). You can still implement your own simple width() function using it like this: def width(u): w = 0 for c in unicodedata.normalize('NFC', u): cwidth = unicodedata.east_asian_width(c) if cwidth in ('W', 'F'): w += 2 else: w += 1 return w | ||||
* | let's avoid the extra nesting where reasonable | Fred Drake | 2004-08-03 | 1 | -1/+1 |
| | |||||
* | Fix typo though | Neal Norwitz | 2004-08-02 | 1 | -2/+2 |
| | |||||
* | Fix doubled word. | Raymond Hettinger | 2004-08-02 | 1 | -1/+1 |
| |