| Commit message (Expand) | Author | Age | Files | Lines |
* | Bug 415514 reported that e.g. | Tim Peters | 2001-04-12 | 1 | -25/+24 |
|
|
* | Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. | Tim Peters | 2001-04-12 | 1 | -14/+25 |
|
|
* | _Py_ReleaseInternedStrings(): Private API function to decref and | Barry Warsaw | 2001-02-23 | 1 | -0/+10 |
|
|
* | Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. | Ka-Ping Yee | 2001-01-24 | 1 | -6/+17 |
|
|
* | Derivative of patch #102549, "simpler, faster(!) implementation of string.join". | Tim Peters | 2001-01-19 | 1 | -38/+52 |
|
|
* | Added checks to prevent PyUnicode_Count() from dumping core | Marc-André Lemburg | 2001-01-16 | 1 | -11/+26 |
|
|
* | [ Patch #102852 ] Make % error a bit more informative by indicates the | Andrew M. Kuchling | 2000-12-15 | 1 | -2/+3 |
|
|
* | Jeffrey D. Collins <tokeneater@users.sourceforge.net>: | Fred Drake | 2000-12-06 | 1 | -3/+3 |
|
|
* | Fox for SF bug #123859: %[duxXo] long formats inconsistent. | Tim Peters | 2000-11-30 | 1 | -4/+1 |
|
|
* | SF patch #102548, fix for bug #121013, by mwh@users.sourceforge.net. | Guido van Rossum | 2000-11-27 | 1 | -1/+1 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -2/+2 |
|
|
* | [ Bug #116174 ] using %% in cstrings sometimes fails with unicode paramsFix f... | Marc-André Lemburg | 2000-10-07 | 1 | -11/+17 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -5/+1 |
|
|
* | Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,... | Tim Peters | 2000-09-21 | 1 | -28/+203 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 1 | -7/+63 |
|
|
* | Fix for bug 113934. string*n and unicode*n did no overflow checking at | Tim Peters | 2000-09-09 | 1 | -2/+17 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Insure properly identifies the `interned' dictionary as leaking at | Barry Warsaw | 2000-08-16 | 1 | -0/+12 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -5/+5 |
|
|
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
|
|
* | Fix typo in error message | Andrew M. Kuchling | 2000-07-12 | 1 | -1/+1 |
|
|
* | small updates to string_join: | Jeremy Hylton | 2000-07-11 | 1 | -6/+9 |
|
|
* | string_join(): Some cleaning up of reference counting. In the | Barry Warsaw | 2000-07-11 | 1 | -7/+10 |
|
|
* | fix two refcount bugs in new string_join implementation: | Jeremy Hylton | 2000-07-11 | 1 | -6/+2 |
|
|
* | two changes to string_join: | Jeremy Hylton | 2000-07-10 | 1 | -82/+42 |
|
|
* | Somebody started playing with const, so of course the outcome | Tim Peters | 2000-07-09 | 1 | -8/+8 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -187/+76 |
|
|
* | Added new codec APIs and a new interface method .encode() which | Marc-André Lemburg | 2000-07-06 | 1 | -0/+114 |
|
|
* | Added new .isalpha() and .isalnum() methods to match the same | Marc-André Lemburg | 2000-07-05 | 1 | -0/+68 |
|
|
* | 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 |
|
|
* | Marc-Andre Lemburg <mal@lemburg.com>: | Marc-André Lemburg | 2000-06-30 | 1 | -26/+68 |
|
|
* | Fredrik Lundh <effbot@telia.com>: | Fred Drake | 2000-06-20 | 1 | -8/+4 |
|
|
* | Marc-Andre Lemburg <mal@lemburg.com>: | Marc-André Lemburg | 2000-06-14 | 1 | -0/+20 |
|
|
* | Patch from Michael Hudson: improve unclear error message | Andrew M. Kuchling | 2000-06-09 | 1 | -1/+1 |
|
|
* | Michael Hudson <mwh21@cam.ac.uk>: | Fred Drake | 2000-06-01 | 1 | -1/+3 |
|
|
* | Trent Mick: | Guido van Rossum | 2000-05-08 | 1 | -5/+9 |
|
|
* | The methods islower(), isupper(), isspace(), isdigit() and istitle() | Guido van Rossum | 2000-05-05 | 1 | -11/+11 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -21/+19 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-11 | 1 | -11/+14 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-10 | 1 | -3/+52 |
|
|
* | On 17-Mar-2000, Marc-Andre Lemburg said: | Barry Warsaw | 2000-03-20 | 1 | -2/+2 |
|
|
* | Fix typo in replace() detected by Mark Hammond and fixed by Marc-Andre. | Guido van Rossum | 2000-03-13 | 1 | -2/+4 |
|
|
* | Many changes for Unicode, by Marc-Andre Lemburg. | Guido van Rossum | 2000-03-10 | 1 | -162/+755 |
|
|
* | Patch by Moshe Zadka: move the string special case from abstract.c | Guido van Rossum | 2000-03-07 | 1 | -0/+22 |
|
|
* | string_join(): Fix memory leaks discovered by Charles Waldman (and a | Barry Warsaw | 2000-03-06 | 1 | -5/+15 |
|
|
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 1 | -14/+14 |
|
|
* | The rest of the changes by Trent Mick and Dale Nagata for warning-free | Guido van Rossum | 2000-01-20 | 1 | -4/+4 |
|
|
* | do_strip(): Fixed cut-and-paste error; this function should check for | Barry Warsaw | 1999-12-15 | 1 | -3/+1 |
|
|