| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed support for containment test when a negative step is used; this | Fred Drake | 2000-11-08 | 1 | -8/+34 |
|
|
* | In the containment test, get the boundary condition right. ">" was used | Fred Drake | 2000-11-08 | 1 | -2/+2 |
|
|
* | Added 38,642 missing characters to the Unicode database (first-last | Fredrik Lundh | 2000-11-03 | 1 | -87/+86 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 8 | -29/+52 |
|
|
* | [ Bug #116174 ] using %% in cstrings sometimes fails with unicode paramsFix f... | Marc-André Lemburg | 2000-10-07 | 1 | -11/+17 |
|
|
* | Donn Cave <donn@oz.net>: | Fred Drake | 2000-10-06 | 1 | -0/+2 |
|
|
* | SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than | Tim Peters | 2000-10-06 | 3 | -32/+47 |
|
|
* | Simplify _PyTuple_Resize by not using the tuple free list and dropping | Neil Schemenauer | 2000-10-05 | 1 | -86/+24 |
|
|
* | Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the | Thomas Wouters | 2000-10-05 | 1 | -11/+11 |
|
|
* | Move LONG_BIT from intobject.c to pyport.h. #error if it's already been | Tim Peters | 2000-10-05 | 1 | -8/+0 |
|
|
* | - fix a GC bug caused by malloc() failing | Neil Schemenauer | 2000-10-04 | 1 | -1/+1 |
|
|
* | _PyUnicode_Fini(): Initialize the local freelist walking variable `u' | Barry Warsaw | 2000-10-03 | 1 | -2/+3 |
|
|
* | In _PyUnicode_Fini(), decref unicode_empty before tearng down the free | Guido van Rossum | 2000-10-03 | 1 | -2/+2 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 8 | -67/+1 |
|
|
* | - don't set the titlecase flag for uppercase letters (sorry, tim) | Fredrik Lundh | 2000-09-25 | 1 | -40/+40 |
|
|
* | unicode database compression, step 3: | Fredrik Lundh | 2000-09-25 | 1 | -10021/+72 |
|
|
* | unicode database compression, step 3: | Fredrik Lundh | 2000-09-25 | 1 | -0/+578 |
|
|
* | Replace SIGFPE paranoia around strtod and atof. I don't believe these | Tim Peters | 2000-09-25 | 1 | -0/+4 |
|
|
* | Fix for SF bug 110624: float literals behave inconsistently. | Tim Peters | 2000-09-23 | 1 | -16/+44 |
|
|
* | Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems. | Guido van Rossum | 2000-09-21 | 1 | -2/+6 |
|
|
* | As suggested by Toby Dickenson, setting ob_type to NULL in | Guido van Rossum | 2000-09-21 | 1 | -4/+0 |
|
|
* | Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,... | Tim Peters | 2000-09-21 | 2 | -52/+271 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 1 | -7/+63 |
|
|
* | PyObject_SetAttr() and PyObject_GetAttr() now also accept Unicode | Marc-André Lemburg | 2000-09-18 | 1 | -11/+37 |
|
|
* | Fix for SF bug 110688: Instance deallocation neglected to account for | Tim Peters | 2000-09-17 | 1 | -12/+28 |
|
|
* | Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. | Tim Peters | 2000-09-16 | 1 | -1/+1 |
|
|
* | Don't remove instance objects from the GC container set until we are | Neil Schemenauer | 2000-09-15 | 1 | -2/+1 |
|
|
* | Correctly cast the return value of realloc. | Martin v. Löwis | 2000-09-15 | 1 | -1/+1 |
|
|
* | Correctly use realloc return value. Fixes bug #114424. | Martin v. Löwis | 2000-09-15 | 1 | -1/+1 |
|
|
* | Fix for bug 113934. string*n and unicode*n did no overflow checking at | Tim Peters | 2000-09-09 | 2 | -4/+36 |
|
|
* | changed \x to consume exactly two hex digits, also for unicode | Fredrik Lundh | 2000-09-03 | 1 | -55/+66 |
|
|
* | Cosmetic cleanup by Vladimir. | Thomas Wouters | 2000-09-02 | 1 | -43/+49 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 20 | -180/+0 |
|
|
* | Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. | Guido van Rossum | 2000-09-01 | 1 | -15/+20 |
|
|
* | Fix grouping, again. This time properly :-) Sorry, guys. | Thomas Wouters | 2000-09-01 | 1 | -3/+3 |
|
|
* | refactor __del__ exception handler into PyErr_WriteUnraisable | Jeremy Hylton | 2000-09-01 | 1 | -20/+1 |
|
|
* | Add parens suggested by gcc -Wall. | Guido van Rossum | 2000-09-01 | 1 | -2/+3 |
|
|
* | Slight performance hack that also avoids requiring the existence of thread | Fred Drake | 2000-08-31 | 1 | -12/+124 |
|
|
* | Clear errors raised by PyObject_Compare() without losing any existing | Fred Drake | 2000-08-31 | 1 | -9/+44 |
|
|
* | Fix grouping: this is how I intended it, misguided as I was in boolean | Thomas Wouters | 2000-08-31 | 1 | -2/+2 |
|
|
* | Peter Schneider-Kamp <nowonder@nowonder.de>: | Fred Drake | 2000-08-31 | 1 | -7/+3 |
|
|
* | Removed compiler warning about wanting explicit grouping around && | Fred Drake | 2000-08-31 | 1 | -4/+6 |
|
|
* | PyOS_CheckStack() returns 1 when failing, not -1. | Guido van Rossum | 2000-08-30 | 1 | -1/+1 |
|
|
* | Fixed a serious typo. | Marc-André Lemburg | 2000-08-25 | 1 | -1/+1 |
|
|
* | Fix to bug [ Bug #111860 ] file.writelines() crashes. | Marc-André Lemburg | 2000-08-25 | 1 | -9/+34 |
|
|
* | Call PyErr_Clear() to clear the AttributeError raised by GetAttr. | Thomas Wouters | 2000-08-25 | 1 | -0/+1 |
|
|
* | Support for the in-place operations introduced by augmented assignment. Only | Thomas Wouters | 2000-08-24 | 3 | -29/+647 |
|
|
* | Addendum to previous change: now that 'f' is not unconditionally | Thomas Wouters | 2000-08-23 | 1 | -11/+11 |
|
|
* | Add extra check on whether 'tp_as_number' is still non-NULL after coercion, | Thomas Wouters | 2000-08-23 | 1 | -24/+28 |
|
|
* | Added PyOS_CheckStack call to PyObject_Compare | Jack Jansen | 2000-08-22 | 1 | -0/+13 |
|
|