summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Ugly band-aid to work around a bug in Linux ftell().Guido van Rossum1998-05-051-1/+3
* Get rid of the unused ifdefed-out old sort code.Guido van Rossum1998-04-281-76/+0
* If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and strGuido van Rossum1998-04-281-0/+12
* Enable ftruncate() on the Mac.Guido van Rossum1998-04-281-0/+6
* Quicksort retuned by Tim Peters.Guido van Rossum1998-04-281-33/+26
* Clear the error condition set by ftell().Guido van Rossum1998-04-271-0/+2
* Be less naive about null characters in an object's repr().Guido van Rossum1998-04-211-2/+2
* Some robustness checks in Py_ReprLeave() in the unlikely event someoneGuido van Rossum1998-04-111-0/+4
* Use Py_Repr{Enter,Leave} to display recursive lists in finite space.Guido van Rossum1998-04-101-1/+20
* Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space.Guido van Rossum1998-04-101-5/+31
* Add implementations of Py_Repr{Enter,Leave}.Guido van Rossum1998-04-101-0/+64
* Make new gcc -Wall happyGuido van Rossum1998-04-104-7/+13
* Add PyObject_Not().Guido van Rossum1998-04-091-0/+14
* This was the reason a numeric array to a real power was not working.Guido van Rossum1998-04-031-1/+2
* Subtle fix in the read() code which could cause a read broken up inGuido van Rossum1998-03-181-1/+1
* When we have no setvbuf(), make the file totally unbuffered usingGuido van Rossum1998-03-061-1/+4
* Of course, I shouldn't have used lseek() to find out the file'sGuido van Rossum1998-03-031-6/+3
* Add back some safeguards on the index elements that were lost in theGuido van Rossum1998-02-251-2/+2
* Add internal routine _PyModule_Clear(), which does approximately whatGuido van Rossum1998-02-191-1/+50
* Vladimir Marangozov' performance hack: copy f_builtins from ancestorGuido van Rossum1998-02-191-3/+14
* Check ferror(), not errno, for fread() error.Guido van Rossum1998-02-191-1/+1
* Instead of "attribute-less object", issue an error message thatGuido van Rossum1998-01-191-1/+4
* Modified quicksort by Raymund Galvin, after studying the GNU libg++Guido van Rossum1997-12-101-23/+48
* Change the default repr() and str() of class instance objects to lookGuido van Rossum1997-12-031-1/+9
* Add a new function PyNumber_CoerceEx() which works just likeGuido van Rossum1997-11-191-3/+15
* Undo another glitch of the automatic not-so-Grand Renaming; some localGuido van Rossum1997-11-181-10/+10
* Fix problem discovered by Barry: if you hit ^C toGuido van Rossum1997-11-071-2/+2
* Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov)Guido van Rossum1997-10-311-2/+3
* Hack suggested by Matthias Klose to pull in all relevant entry pointsGuido van Rossum1997-10-311-0/+10
* New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() andGuido van Rossum1997-10-211-1/+52
* Write a str() function for class objects that returnsGuido van Rossum1997-10-201-2/+36
* Correct Barry's fix -- take care of {}.get(0).Guido van Rossum1997-10-201-0/+3
* dict_get(): Fixed a couple of stupid mistakes which caused crashes.Barry Warsaw1997-10-201-8/+2
* Check that all base classes are indeed class objects, rather thanGuido van Rossum1997-10-071-5/+30
* dict_get(): New method for item access with different semantics thanBarry Warsaw1997-10-061-0/+38
* Don't intern the key string for getitem and delitem.Guido van Rossum1997-09-291-3/+1
* When creating a class, set its __module__ attribute to the moduleGuido van Rossum1997-09-121-1/+22
* Patch submitted by Brad Howes (with one bug fixed by me): allowGuido van Rossum1997-09-081-8/+17
* Allow assignments to instance.__dict__ and instance.__class__. TheGuido van Rossum1997-08-251-17/+57
* Rename roundup() to roundupsize(), as there's a macro roundup() in theGuido van Rossum1997-08-251-2/+2
* Use lseek instead of ftell; compensate by adding BUFSIZEGuido van Rossum1997-08-211-2/+6
* Made lookdict nearly twice as fast, resulting in a 5% overallGuido van Rossum1997-08-181-11/+13
* PyTuple_SetItem should require that the tuple's refcnt is one!Guido van Rossum1997-08-171-1/+1
* Fix mixup about PyErr_NoMemory() prototype.Guido van Rossum1997-08-121-4/+8
* Fix bug in comparing function objects detected by Sjoerd:Guido van Rossum1997-08-051-3/+9
* Added _Fini() routines to free up some memoryGuido van Rossum1997-08-053-1/+47
* Change the Fini function to only remove otherwise unreferenced stringsGuido van Rossum1997-08-051-6/+16
* Added separate free list for cfunction (builtin method) objects, for aGuido van Rossum1997-08-051-7/+30
* Provide a dummy empty directory as f_builtins instead of failing, whenGuido van Rossum1997-08-051-7/+22
* Added separate free list for instance method objects, for a fewGuido van Rossum1997-08-051-4/+28