| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix whitespace botch. | Fred Drake | 2001-05-18 | 1 | -1/+1 |
|
|
* | vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and | Jeremy Hylton | 2001-05-18 | 1 | -10/+8 |
|
|
* | Add support for Windows using "mbcs" as the default Unicode encoding when dea... | Mark Hammond | 2001-05-13 | 1 | -1/+1 |
|
|
* | Added new parser markers 'et' and 'et#' which do not recode string | Marc-André Lemburg | 2001-05-02 | 1 | -4/+20 |
|
|
* | Related to SF bug 132008 (PyList_Reverse blows up). | Tim Peters | 2001-02-12 | 1 | -0/+2 |
|
|
* | Better error message when non-dictionary received for **kwarg | Jeremy Hylton | 2001-01-25 | 1 | -2/+7 |
|
|
* | This patch makes sure that the function name always appears in the error | Ka-Ping Yee | 2001-01-15 | 1 | -26/+35 |
|
|
* | vgetargskeywords(): Patch for memory leak identified in bug #119862. | Barry Warsaw | 2000-12-11 | 1 | -0/+1 |
|
|
* | Clarified some of the error messages, esp. "read-only character | Guido van Rossum | 2000-12-01 | 1 | -17/+16 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -3/+0 |
|
|
* | Special case the "s#" PyArg_Parse() token for Unicode objects: | Marc-André Lemburg | 2000-09-21 | 1 | -26/+53 |
|
|
* | Added B format char to Py_BuildValue (same as b,h,i, but makes | Jack Jansen | 2000-09-15 | 1 | -1/+1 |
|
|
* | This patch hopefully fixes the problem with "es#" and "es" in | Marc-André Lemburg | 2000-09-08 | 1 | -0/+2 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Changed H specifier to mean "bitfield", i.e. any value from | Jack Jansen | 2000-08-05 | 1 | -5/+27 |
|
|
* | This patch finalizes the move from UTF-8 to a default encoding in | Marc-André Lemburg | 2000-08-03 | 1 | -4/+6 |
|
|
* | Mass ANSIfication of function definitions. Doesn't cover all 'extern' | Thomas Wouters | 2000-07-22 | 1 | -95/+12 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
|
|
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -21/+18 |
|
|
* | Added support for H (unsigned short) specifier in PyArg_ParseTuple and | Jack Jansen | 2000-07-06 | 1 | -1/+27 |
|
|
* | Jack Jansen, Mac patch: | Guido van Rossum | 2000-07-01 | 1 | -0/+3 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Vladimir Marangozov: | Guido van Rossum | 2000-06-28 | 1 | -8/+8 |
|
|
* | Trent Mick <trentm@activestate.com>: | Fred Drake | 2000-05-09 | 1 | -12/+12 |
|
|
* | Trent Mick: | Guido van Rossum | 2000-05-08 | 1 | -14/+44 |
|
|
* | Brian Hooper <brian_takashi@hotmail.com>: | Fred Drake | 2000-05-03 | 1 | -0/+32 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-27 | 1 | -2/+7 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-03-28 | 1 | -2/+2 |
|
|
* | Typo fixed by Mark Hammond. | Guido van Rossum | 2000-03-28 | 1 | -2/+2 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-03-24 | 1 | -0/+118 |
|
|
* | Marc-Andre Lemburg: support for Unicode strings; 'U' expects a Unicode | Guido van Rossum | 2000-03-10 | 1 | -1/+23 |
|
|
* | Patch by Tommy Burnette to accept an arbitrary sequence when "(...)" | Guido van Rossum | 1999-02-17 | 1 | -7/+10 |
|
|
* | Change rare occurrences of #if HAVE_LONG_LONG to #ifdef. | Guido van Rossum | 1999-01-25 | 1 | -2/+2 |
|
|
* | Implement new format character 't#'. This is like s#, accepting an | Guido van Rossum | 1998-10-08 | 1 | -0/+25 |
|
|
* | Patch by Mark Hammond to support 64-bit ints on MS platforms. | Guido van Rossum | 1998-08-25 | 1 | -6/+6 |
|
|
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 1 | -0/+22 |
|
|
* | Another veeeeeery old patch... | Guido van Rossum | 1998-05-15 | 1 | -9/+11 |
|
|
* | Make new gcc -Wall happy | Guido van Rossum | 1998-04-10 | 1 | -1/+1 |
|
|
* | Protect PyErr_Format format string argument from overflow (ironically, | Guido van Rossum | 1998-01-19 | 1 | -1/+1 |
|
|
* | Oops -- '(' is also a legal start character of a new format... | Guido van Rossum | 1997-12-19 | 1 | -0/+1 |
|
|
* | Add explicit check for correct next character in format at end of | Guido van Rossum | 1997-12-09 | 1 | -0/+7 |
|
|
* | Checkin of Jack's buffer mods. | Guido van Rossum | 1997-05-05 | 1 | -25/+89 |
|
|
* | Fix old typo PyArgs_VaParse -> PyArg_VaParse. | Guido van Rossum | 1997-05-05 | 1 | -2/+2 |
|
|
* | Quickly renamed the remaining files -- this directory is done. | Guido van Rossum | 1997-04-29 | 1 | -95/+96 |
|
|
* | Keep gcc -Wall and Microsoft VC happy. | Guido van Rossum | 1997-04-11 | 1 | -5/+5 |
|
|
* | Keep gcc -Wall happy. | Guido van Rossum | 1996-12-05 | 1 | -24/+23 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -10/+17 |
|
|
* | Add needed #include <ctype.h> | Guido van Rossum | 1996-08-21 | 1 | -0/+2 |
|
|