summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Use getstringsize where available instead of strlen.Guido van Rossum1996-08-261-1/+1
* Be a bit more careful with printing a warning for a failed __del__.Guido van Rossum1996-08-221-2/+5
* Added PyObject_DelItem and PySequence_Del{Item,Slice}.Guido van Rossum1996-08-211-0/+61
* More efficient handling of "__doc__" lookup.Guido van Rossum1996-08-211-2/+8
* Write warning about exception in __del__ to stderr, not stdout.Guido van Rossum1996-08-201-1/+1
* Changes to make the file acceptable to K&R C compilers (HPUX, SunOS 4.x).Guido van Rossum1996-08-191-25/+38
* Test for negative # to the nonintegral float power here.Guido van Rossum1996-08-161-15/+12
* Disable support for access statementGuido van Rossum1996-08-123-4/+37
* Define reference count admin debug functions to return void.Guido van Rossum1996-08-121-0/+4
* Optimizations by Sjoerd:Guido van Rossum1996-08-091-81/+172
* Support for tp_getattro, tp_setattro (Sjoerd)Guido van Rossum1996-08-093-0/+33
* Use pre-created string objects for most common exceptionsGuido van Rossum1996-08-091-2/+8
* Correct wrong calculation of pow(0.0, 0.0, negative_number)Guido van Rossum1996-08-091-5/+6
* Allow compilation by K&R C compiler.Guido van Rossum1996-08-011-8/+8
* repr("...") -> "Ellipses"Guido van Rossum1996-07-301-1/+1
* Added sliceobject.cGuido van Rossum1996-07-302-2/+189
* Speedup suggested by SjoerdGuido van Rossum1996-07-302-6/+8
* Use NEWOBJ() macro instead of calling newobject() directly.Guido van Rossum1996-07-221-1/+1
* complex -> Py_complexGuido van Rossum1996-07-211-40/+40
* Hacks for MS_COREDLLGuido van Rossum1996-07-211-0/+19
* Only __dict__ and __class__ are read-only instance attributesGuido van Rossum1996-07-211-2/+4
* Different logic for defining CHECK(); 16-bit MSC specific define.Guido van Rossum1996-06-261-2/+8
* rename printrefs, getobjects to _Py_ prefixGuido van Rossum1996-05-241-2/+2
* make some things staticGuido van Rossum1996-05-242-6/+6
* new debugger symbol namesGuido van Rossum1996-05-233-8/+8
* TRACE_REFS -> Py_TRACE_REFS.Guido van Rossum1996-05-221-1/+5
* Plug memory leak in the previous fix :-(Guido van Rossum1996-05-211-1/+0
* Fix obscure bug in string%mapping where the mapping creates its itemsGuido van Rossum1996-05-211-21/+12
* Added __name__ attribute to class instance method objects.Guido van Rossum1996-05-141-7/+15
* use 'j' instead of 'i' for imaginary constantsGuido van Rossum1996-01-251-2/+2
* Removed unused varJack Jansen1996-01-251-1/+0
* added complex and c objectsGuido van Rossum1996-01-121-2/+6
* Hack to force loading of cobject.oGuido van Rossum1996-01-121-0/+4
* better power implementationGuido van Rossum1996-01-121-18/+54
* Added PyComplex_AsCComplexGuido van Rossum1996-01-121-0/+12
* complex numbers a la Konrad HinsenGuido van Rossum1996-01-121-0/+562
* opaque C object a la Jim FultonGuido van Rossum1996-01-121-0/+100
* fix free memory reads in dictlookup et alGuido van Rossum1995-12-082-20/+14
* adapted to K&R CGuido van Rossum1995-09-181-35/+89
* Get ordering right for TRACE_REFS/COUNT_ALLOCS combination (otherwiseSjoerd Mullender1995-09-181-1/+1
* Implemented two new functions in sys:Sjoerd Mullender1995-08-291-0/+58
* Fixed calling of __del__ method with TRACE_REFS defined.Sjoerd Mullender1995-08-281-1/+23
* class objects are read-only in restricted modeGuido van Rossum1995-08-041-0/+5
* better err checks in resizetupleGuido van Rossum1995-08-041-2/+2
* changes for keyword args to built-in functions and classesGuido van Rossum1995-07-262-7/+8
* better policy regarding NULL localsGuido van Rossum1995-07-261-9/+13
* changes for keyword arguments and fast function call; added abstract.cGuido van Rossum1995-07-183-67/+80
* Generic Abstract Object InterfaceGuido van Rossum1995-07-181-0/+972
* args to call_object must be tuple or NULLGuido van Rossum1995-07-123-17/+7
* fix read(0), readline(0); make tuple for call_object argsGuido van Rossum1995-07-101-14/+17