summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-248-29/+52
* [ Bug #116174 ] using %% in cstrings sometimes fails with unicode paramsFix f...Marc-André Lemburg2000-10-071-11/+17
* Donn Cave <donn@oz.net>:Fred Drake2000-10-061-0/+2
* SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather thanTim Peters2000-10-063-32/+47
* Simplify _PyTuple_Resize by not using the tuple free list and droppingNeil Schemenauer2000-10-051-86/+24
* Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize theThomas Wouters2000-10-051-11/+11
* Move LONG_BIT from intobject.c to pyport.h. #error if it's already beenTim Peters2000-10-051-8/+0
* - fix a GC bug caused by malloc() failingNeil Schemenauer2000-10-041-1/+1
* _PyUnicode_Fini(): Initialize the local freelist walking variable `u'Barry Warsaw2000-10-031-2/+3
* In _PyUnicode_Fini(), decref unicode_empty before tearng down the freeGuido van Rossum2000-10-031-2/+2
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-268-67/+1
* - don't set the titlecase flag for uppercase letters (sorry, tim)Fredrik Lundh2000-09-251-40/+40
* unicode database compression, step 3:Fredrik Lundh2000-09-251-10021/+72
* unicode database compression, step 3:Fredrik Lundh2000-09-251-0/+578
* Replace SIGFPE paranoia around strtod and atof. I don't believe theseTim Peters2000-09-251-0/+4
* Fix for SF bug 110624: float literals behave inconsistently.Tim Peters2000-09-231-16/+44
* Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems.Guido van Rossum2000-09-211-2/+6
* As suggested by Toby Dickenson, setting ob_type to NULL inGuido van Rossum2000-09-211-4/+0
* Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,...Tim Peters2000-09-212-52/+271
* This patch adds a new Python C API called PyString_AsStringAndSize()Marc-André Lemburg2000-09-191-7/+63
* PyObject_SetAttr() and PyObject_GetAttr() now also accept UnicodeMarc-André Lemburg2000-09-181-11/+37
* Fix for SF bug 110688: Instance deallocation neglected to account forTim Peters2000-09-171-12/+28
* Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.Tim Peters2000-09-161-1/+1
* Don't remove instance objects from the GC container set until we areNeil Schemenauer2000-09-151-2/+1
* Correctly cast the return value of realloc.Martin v. Löwis2000-09-151-1/+1
* Correctly use realloc return value. Fixes bug #114424.Martin v. Löwis2000-09-151-1/+1
* Fix for bug 113934. string*n and unicode*n did no overflow checking atTim Peters2000-09-092-4/+36
* changed \x to consume exactly two hex digits, also for unicodeFredrik Lundh2000-09-031-55/+66
* Cosmetic cleanup by Vladimir.Thomas Wouters2000-09-021-43/+49
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-0120-180/+0
* Rewritten some pieces of PyNumber_InPlaceAdd() for clarity.Guido van Rossum2000-09-011-15/+20
* Fix grouping, again. This time properly :-) Sorry, guys.Thomas Wouters2000-09-011-3/+3
* refactor __del__ exception handler into PyErr_WriteUnraisableJeremy Hylton2000-09-011-20/+1
* Add parens suggested by gcc -Wall.Guido van Rossum2000-09-011-2/+3
* Slight performance hack that also avoids requiring the existence of threadFred Drake2000-08-311-12/+124
* Clear errors raised by PyObject_Compare() without losing any existingFred Drake2000-08-311-9/+44
* Fix grouping: this is how I intended it, misguided as I was in booleanThomas Wouters2000-08-311-2/+2
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-311-7/+3
* Removed compiler warning about wanting explicit grouping around &&Fred Drake2000-08-311-4/+6
* PyOS_CheckStack() returns 1 when failing, not -1.Guido van Rossum2000-08-301-1/+1
* Fixed a serious typo.Marc-André Lemburg2000-08-251-1/+1
* Fix to bug [ Bug #111860 ] file.writelines() crashes.Marc-André Lemburg2000-08-251-9/+34
* Call PyErr_Clear() to clear the AttributeError raised by GetAttr.Thomas Wouters2000-08-251-0/+1
* Support for the in-place operations introduced by augmented assignment. OnlyThomas Wouters2000-08-243-29/+647
* Addendum to previous change: now that 'f' is not unconditionallyThomas Wouters2000-08-231-11/+11
* Add extra check on whether 'tp_as_number' is still non-NULL after coercion,Thomas Wouters2000-08-231-24/+28
* Added PyOS_CheckStack call to PyObject_CompareJack Jansen2000-08-221-0/+13
* Added include for limits.hJack Jansen2000-08-222-0/+8
* PyUnicode_AsUTF8String(): /F picks up what I missed: the local varBarry Warsaw2000-08-181-2/+0
* PyUnicode_AsUTF8String(): Don't need to explicitly incref str sinceBarry Warsaw2000-08-181-7/+3