| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Derivative of patch #102549, "simpler, faster(!) implementation of string.join". | Tim Peters | 2001-01-19 | 1 | -38/+52 |
|
|
* | Rich comparisons fallout: instance_hash() should check for both | Guido van Rossum | 2001-01-18 | 1 | -7/+14 |
|
|
* | Rich comparisons fallout: PyObject_Hash() should check for both | Guido van Rossum | 2001-01-18 | 1 | -1/+1 |
|
|
* | Changes to recursive-object comparisons, having to do with a test case | Guido van Rossum | 2001-01-18 | 1 | -107/+137 |
|
|
* | Move distributed and duplicated config for stat() and fstat() into pyport.h. | Tim Peters | 2001-01-18 | 1 | -20/+0 |
|
|
* | Use rich comparisons to fulfill an old wish: complex numbers now raise | Guido van Rossum | 2001-01-18 | 1 | -49/+84 |
|
|
* | Rich comparisons: | Guido van Rossum | 2001-01-18 | 1 | -118/+45 |
|
|
* | Same treatment as listobject.c: | Guido van Rossum | 2001-01-18 | 1 | -43/+104 |
|
|
* | Fix a leak in instance_coerce(). This was introduced by Neil's | Guido van Rossum | 2001-01-17 | 1 | -2/+0 |
|
|
* | Convert to rich comparisons: | Guido van Rossum | 2001-01-17 | 1 | -90/+163 |
|
|
* | Deal properly (?) with comparing recursive datastructures. | Guido van Rossum | 2001-01-17 | 1 | -62/+69 |
|
|
* | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 2 | -0/+48 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -14/+1 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -17/+1 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -14/+1 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -4/+4 |
|
|
* | Rich comparisons. | Guido van Rossum | 2001-01-17 | 1 | -146/+278 |
|
|
* | Rich comparisons. Refactored internal routine do_cmp() and added APIs | Guido van Rossum | 2001-01-17 | 1 | -74/+293 |
|
|
* | Rationalizing the fallback code for portable fseek -- this is all much | Guido van Rossum | 2001-01-16 | 1 | -26/+12 |
|
|
* | Added checks to prevent PyUnicode_Count() from dumping core | Marc-André Lemburg | 2001-01-16 | 2 | -19/+45 |
|
|
* | Committing PEP 232, function attribute feature, approved by Guido. | Barry Warsaw | 2001-01-15 | 2 | -15/+113 |
|
|
* | SF patch #103158 by Greg Ball: Don't do unsafe arithmetic in xrange | Guido van Rossum | 2001-01-15 | 1 | -10/+80 |
|
|
* | Speed getline_via_fgets(), by supplying two "fast paths", although one is | Tim Peters | 2001-01-15 | 1 | -54/+81 |
|
|
* | Use the "MS" getline hack (fgets()) by default on non-get_unlocked | Tim Peters | 2001-01-15 | 1 | -30/+47 |
|
|
* | Jeff Epler's patch adding an xreadlines() method. (It just imports | Guido van Rossum | 2001-01-09 | 1 | -1/+25 |
|
|
* | Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining | Guido van Rossum | 2001-01-09 | 1 | -1/+1 |
|
|
* | Fix a silly bug in float_pow. Sorry Tim. | Neil Schemenauer | 2001-01-08 | 1 | -1/+1 |
|
|
* | A few reformats; no logic changes. | Tim Peters | 2001-01-08 | 1 | -9/+8 |
|
|
* | Let's hope that three time's a charm... | Guido van Rossum | 2001-01-08 | 1 | -3/+3 |
|
|
* | Fiddled ms_getline_hack after talking w/ Guido: made clearer that the | Tim Peters | 2001-01-08 | 1 | -65/+67 |
|
|
* | MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky | Tim Peters | 2001-01-07 | 1 | -15/+184 |
|
|
* | Tim noticed that I had botched get_line_raw(). Looking again, I | Guido van Rossum | 2001-01-07 | 1 | -47/+30 |
|
|
* | This patch adds a new feature to the builtin charmap codec: | Marc-André Lemburg | 2001-01-06 | 1 | -8/+48 |
|
|
* | Restructured get_line() for clarity and speed. | Guido van Rossum | 2001-01-05 | 1 | -66/+59 |
|
|
* | Changes for PEP 208. PyObject_Compare has been rewritten. Instances no | Neil Schemenauer | 2001-01-04 | 1 | -118/+139 |
|
|
* | Make long a new style number type. Sequence repeat is now done here | Neil Schemenauer | 2001-01-04 | 1 | -76/+262 |
|
|
* | Make int a new style number type. Sequence repeat is now done here | Neil Schemenauer | 2001-01-04 | 1 | -64/+116 |
|
|
* | Make float a new style number type. | Neil Schemenauer | 2001-01-04 | 1 | -42/+108 |
|
|
* | Make instances a new style number type. See PEP 208 for details. Instance | Neil Schemenauer | 2001-01-04 | 1 | -184/+268 |
|
|
* | Massive changes as per PEP 208. Read it for details. | Neil Schemenauer | 2001-01-04 | 1 | -728/+318 |
|
|
* | dict_update has two boundary conditions: a.update(a) and a.update({}) | Jeremy Hylton | 2001-01-03 | 1 | -2/+2 |
|
|
* | fix leak | Jeremy Hylton | 2001-01-03 | 1 | -1/+3 |
|
|
* | This patch changes the default behaviour of the builtin charmap | Marc-André Lemburg | 2001-01-03 | 1 | -13/+8 |
|
|
* | Add garbage collection for module objects. Closes patch #102939 and | Neil Schemenauer | 2001-01-02 | 1 | -2/+27 |
|
|
* | Make the indentation consistently use tabs instead of using spaces just | Fred Drake | 2000-12-20 | 1 | -3/+3 |
|
|
* | Patch #102940: use only printable Unicode chars in reporting | Andrew M. Kuchling | 2000-12-19 | 1 | -1/+2 |
|
|
* | Patch #102868 from cgw: fix memory leak when an EOF is encountered | Andrew M. Kuchling | 2000-12-19 | 1 | -0/+3 |
|
|
* | Fix off-by-one error in split_substring(). Fixes SF bug #122162. | Guido van Rossum | 2000-12-19 | 1 | -1/+1 |
|
|
* | [ Patch #102852 ] Make % error a bit more informative by indicates the | Andrew M. Kuchling | 2000-12-15 | 2 | -4/+6 |
|
|
* | Test for NULL returned from PyObject_NEW(). | Guido van Rossum | 2000-12-14 | 1 | -0/+3 |
|
|