summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Test for NULL returned from PyObject_NEW().Guido van Rossum2000-12-141-0/+3
* Test for NULL returned from PyObject_NEW().Guido van Rossum2000-12-141-0/+3
* Add long-overdue docstrings to dict methods.Tim Peters2000-12-131-11/+53
* Use METH_VARARGS instead of "1" in list method table.Tim Peters2000-12-131-9/+9
* Typo repair in comments. Fell for GregS's .popitem() poke.Tim Peters2000-12-131-2/+6
* Bring comments up to date (e.g., they still said the table had to beTim Peters2000-12-131-23/+40
* Add popitem() -- SF patch #102733.Guido van Rossum2000-12-121-0/+53
* Jeffrey D. Collins <tokeneater@users.sourceforge.net>:Fred Drake2000-12-061-3/+3
* Backing out my changes.Moshe Zadka2000-11-301-72/+0
* Only use getline() when compiling using glibcAndrew M. Kuchling2000-11-301-1/+1
* Added .first{item,value,key}() to dictionaries.Moshe Zadka2000-11-301-0/+72
* Fox for SF bug #123859: %[duxXo] long formats inconsistent.Tim Peters2000-11-302-7/+2
* Patch #102469: Use glibc's getline() extension when reading unbounded linesAndrew M. Kuchling2000-11-291-3/+30
* Update dependencies per /F.Guido van Rossum2000-11-281-1/+1
* SF patch #102548, fix for bug #121013, by mwh@users.sourceforge.net.Guido van Rossum2000-11-271-1/+1
* Added _HAVE_BSDI and __APPLE__ to the list of platforms that require aGuido van Rossum2000-11-131-1/+1
* Fixed support for containment test when a negative step is used; thisFred Drake2000-11-081-8/+34
* In the containment test, get the boundary condition right. ">" was usedFred Drake2000-11-081-2/+2
* Added 38,642 missing characters to the Unicode database (first-lastFredrik Lundh2000-11-031-87/+86
* 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