Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Checking in the new, improve file.writelines() code. | Guido van Rossum | 2000-03-13 | 1 | -24/+78 |
| | | | | | | This (1) avoids thread unsafety whereby another thread could zap the list while we were using it, and (2) now supports writing arbitrary sequences of strings. | ||||
* | Christian Tismer's "trashcan" patch: | Guido van Rossum | 2000-03-13 | 5 | -1/+55 |
| | | | | | | | | Added wrapping macros to dictobject.c, listobject.c, tupleobject.c, frameobject.c, traceback.c that safely prevends core dumps on stack overflow. Macros and functions in object.c, object.h. The method is an "elevator destructor" that turns cascading deletes into tail recursive behavior when some limit is hit. | ||||
* | Fix typo in replace() detected by Mark Hammond and fixed by Marc-Andre. | Guido van Rossum | 2000-03-13 | 1 | -2/+4 |
| | |||||
* | Add sq_contains implementation. | Guido van Rossum | 2000-03-13 | 1 | -0/+44 |
| | |||||
* | Added Christian Tismer's patch to allow list.append(a,b,c) back -- | Guido van Rossum | 2000-03-13 | 1 | -4/+18 |
| | | | | | with a twist: you have to define NO_STRICT_LIST_APPEND manually to enable multi-arg append(). | ||||
* | Marc-AAndre Lemburg: add new unicode files | Guido van Rossum | 2000-03-10 | 1 | -2/+6 |
| | |||||
* | Many changes for Unicode, by Marc-Andre Lemburg. | Guido van Rossum | 2000-03-10 | 6 | -197/+942 |
| | |||||
* | Unicode implementation by Marc-Andre Lemburg based on original code by | Guido van Rossum | 2000-03-10 | 1 | -0/+4440 |
| | | | | Fredrik Lundh. | ||||
* | Unicode character type helpers, written by Marc-Andre Lemburg. | Guido van Rossum | 2000-03-10 | 1 | -0/+5043 |
| | |||||
* | Patch by Moshe Zadka: remove the string special case in | Guido van Rossum | 2000-03-07 | 1 | -18/+0 |
| | | | | | PySequence_Contains() now that string objects have this code in their tp_contains. | ||||
* | Patch by Moshe Zadka: move the string special case from abstract.c | Guido van Rossum | 2000-03-07 | 1 | -0/+22 |
| | | | | | | here. [Patch modified by GvR to keep the original exception.] | ||||
* | string_join(): Fix memory leaks discovered by Charles Waldman (and a | Barry Warsaw | 2000-03-06 | 1 | -5/+15 |
| | | | | few other paths through the function that leaked). | ||||
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 3 | -20/+20 |
| | | | | PyArg_ParseTuple() format string arguments as possible. | ||||
* | Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This adds | Guido van Rossum | 2000-02-28 | 1 | -0/+56 |
| | | | | | | an instance method instance_contains as sq_contains. It looks for __contains__ and if not found falls back to previous behaviour. Done. | ||||
* | Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This | Guido van Rossum | 2000-02-28 | 1 | -1/+8 |
| | | | | | patches PySequence_Contains() to check for a valid sq_contains field. More to follow. | ||||
* | OKOK, Greg's right, I should've used the :name option in the argument | Guido van Rossum | 2000-02-24 | 1 | -9/+9 |
| | | | | format strings. | ||||
* | Made all list methods use PyArg_ParseTuple(), for more accurate | Guido van Rossum | 2000-02-24 | 1 | -30/+29 |
| | | | | | | | | diagnostics. *** INCOMPATIBLE CHANGE: This changes append(), remove(), index(), and *** count() to require exactly one argument -- previously, multiple *** arguments were silently assumed to be a tuple. | ||||
* | Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), | Andrew M. Kuchling | 2000-02-23 | 1 | -1/+19 |
| | | | | | | and _DelItem(). In sequence multiplication by a long, only call PyErr_Occurred() when the value returned is -1. | ||||
* | dict_has_key(): Accept only one parameter. PR#210 reported by | Fred Drake | 2000-02-23 | 1 | -4/+4 |
| | | | | Andreas Jung <ajung@sz-sb.de>. | ||||
* | In response to one particular complaint on edu-sig, change some error | Guido van Rossum | 2000-02-15 | 1 | -3/+3 |
| | | | | | | messages from "OverflowError: integer pow()" to "OverflowError: integer exponentiation". (Not that this takes care of the complaint in general that the error messages could be greatly improved. :-) | ||||
* | Make multiplying a sequence by a long integer (5L * 'b') legal | Andrew M. Kuchling | 2000-02-14 | 1 | -2/+13 |
| | |||||
* | The rest of the changes by Trent Mick and Dale Nagata for warning-free | Guido van Rossum | 2000-01-20 | 10 | -19/+21 |
| | | | | compilation on NT Alpha. Mostly added casts etc. | ||||
* | On Linux, one sometimes sees spurious errors after interrupting | Guido van Rossum | 2000-01-12 | 1 | -0/+1 |
| | | | | | previous output. Call clearerr() to prevent past errors affecting our ferror() test later, in PyObject_Print(). Suggested by Marc Lemburg. | ||||
* | Implement the other easy thing: repr() of a float now uses %.17g, | Guido van Rossum | 1999-12-23 | 1 | -6/+43 |
| | | | | while str() uses %.12g as before. | ||||
* | long_format(): Now takes a third parameter, addL; iff true, a | Fred Drake | 1999-12-23 | 1 | -9/+19 |
| | | | | | | | | | | | | | | | trailing 'L' is appended to the representation, otherwise not. All existing call sites are modified to pass true for addL. Remove incorrect statement about external use of this function from elsewhere; it's static! long_str(): Handler for the tp_str slot in the type object. Identical to long_repr(), but passes false as the addL parameter of long_format(). | ||||
* | do_strip(): Fixed cut-and-paste error; this function should check for | Barry Warsaw | 1999-12-15 | 1 | -3/+1 |
| | | | | zero arguments (found by Marc Lemburg). | ||||
* | Mainlining the string_methods branch. See branch revision log | Barry Warsaw | 1999-10-12 | 4 | -120/+1199 |
| | | | | messages for specific changes. | ||||
* | Fix PR#66. Solution: add error checking around l_divmod() calls in | Guido van Rossum | 1999-10-11 | 1 | -4/+18 |
| | | | | long_pow(). | ||||
* | Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname | Guido van Rossum | 1999-10-11 | 1 | -1/+1 |
| | | | | object is DECREFed too early. | ||||
* | Patch by Tim Peters fixing PR#88: | Guido van Rossum | 1999-09-27 | 1 | -1/+7 |
| | | | | Integer division can crash under Windows. | ||||
* | Patch by Tim Peters fixing PR#89: | Guido van Rossum | 1999-09-27 | 1 | -0/+5 |
| | | | | long(+/- infinity) returns nonsense. | ||||
* | Patch by Mark Hammond to avoid certain header files on Windows/CE. | Guido van Rossum | 1999-08-27 | 1 | -1/+10 |
| | |||||
* | PyBuffer_New(): Raise ValueError if size is negative (the other | Fred Drake | 1999-08-04 | 1 | -1/+6 |
| | | | | | | | constructors didn't miss this). Raise MemoryError if malloc() fails, instead of just returning NULL. | ||||
* | Mark Favas was quick to note that the last checkin divides by zero | Guido van Rossum | 1999-07-13 | 1 | -1/+1 |
| | | | | | when n == 0... So divide by a->ob_size instead which was already tested for 0. | ||||
* | Appropriate overflow checks so that things like sys.maxint*(1,) can't | Guido van Rossum | 1999-07-12 | 1 | -3/+13 |
| | | | | dump core. | ||||
* | When deallocating a list, DECREF the items from the end back to the start. | Guido van Rossum | 1999-06-09 | 1 | -1/+6 |
| | |||||
* | Fix bug discovered by John W. Shipman -- when the width of a format | Guido van Rossum | 1999-06-07 | 1 | -2/+4 |
| | | | | | | | | specifier came from an int expression instead of a constant in the format, a negative width was truncated to zero instead of taken to mean the same as that negative constant plugged into the format. E.g. "(%*s)" % (-5, "foo") yielded "(foo)" while "(%-5s)" yields "(foo )". Now both yield the latter -- like sprintf() in C. | ||||
* | Tim Peters writes: | Guido van Rossum | 1999-05-06 | 1 | -7/+19 |
| | | | | | | | | | | 1. Fixes float divmod so that the quotient it returns is always an integral value. 2. Fixes float % and float divmod so that the remainder always gets the right sign (the current code uses a "are the signs different?" test that doesn't work half the time <wink> when the product of the divisor and the remainder underflows to 0). | ||||
* | Improve text of some error messages, as suggested by Sean Reifschneider. | Guido van Rossum | 1999-04-19 | 1 | -2/+3 |
| | |||||
* | casts for picky compilers. | Guido van Rossum | 1999-04-10 | 1 | -1/+1 |
| | |||||
* | Vladimir Marangozov contributed updated comments. | Guido van Rossum | 1999-03-24 | 1 | -11/+8 |
| | |||||
* | Folded long lines. | Guido van Rossum | 1999-03-24 | 1 | -9/+18 |
| | |||||
* | Fix a problem with Vladimir's PyFloat_Fini code: clear the free list; if | Guido van Rossum | 1999-03-19 | 1 | -5/+17 |
| | | | | | a block cannot be freed, add its free items back to the free list. This is necessary to avoid leaking when Python is reinitialized later. | ||||
* | Fix a problem with Vladimir's PyInt_Fini code: clear the free list; if | Guido van Rossum | 1999-03-19 | 1 | -5/+27 |
| | | | | | | a block cannot be freed, add its free items back to the free list, and add its valid ints back to the small_ints array if they are in range. This is necessary to avoid leaking when Python is reinitialized later. | ||||
* | Added check for negative offset for PyBuffer_FromObject and check for | Guido van Rossum | 1999-03-19 | 1 | -1/+13 |
| | | | | negative size for PyBuffer_FromMemory. Greg Stein. | ||||
* | Vladimir has restructured his code somewhat so that the blocks are now | Guido van Rossum | 1999-03-12 | 2 | -51/+97 |
| | | | | | | | represented by an explicit structure. (There are still too many casts in the code, but that may be unavoidable.) Also added code so that with -vv it is very chatty about what it does. | ||||
* | OK, try again. Vladimir gave me a fix for the alignment bus error, | Guido van Rossum | 1999-03-12 | 1 | -7/+56 |
| | | | | | so here's his patch again. This time it works (at least on Solaris, Linux and Irix). | ||||
* | Alas, Vladimir's patch caused a bus error (probably double | Guido van Rossum | 1999-03-11 | 1 | -56/+7 |
| | | | | alignment?), and I didn't test it. Withdrawing it for now. | ||||
* | Patch by Vladimir Marangoz to allow freeing of the allocated blocks of | Guido van Rossum | 1999-03-10 | 1 | -7/+56 |
| | | | | floats on finalization. | ||||
* | Patch by Vladimir Marangoz to allow freeing of the allocated blocks of | Guido van Rossum | 1999-03-10 | 1 | -15/+64 |
| | | | | integers on finalization. |