summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Make Py_ReturnNullError() statis as it should be.Guido van Rossum1996-11-111-1/+1
* Only call sq_length in Sequence_GetItem for negative index.Guido van Rossum1996-11-091-4/+6
* correct typo in return variable for PySequence_Index()Guido van Rossum1996-11-061-1/+1
* New permission notice, includes CNRI.Guido van Rossum1996-10-2521-269/+416
* Fixed compare function to do first char comparison in unsigned mode,Guido van Rossum1996-10-231-1/+1
* Support passing in an empty dictionary of keywords to newinstanceobject.Guido van Rossum1996-10-211-1/+3
* Ellipses -> Ellipsis rename (the dictionary really says that it shouldGuido van Rossum1996-10-111-9/+9
* Fix subtle bug detected by Jim F.Guido van Rossum1996-09-301-1/+1
* Oops... Need to clear c_error before calling c_quot().Guido van Rossum1996-09-121-0/+2
* Properly(?) implemented remainder and divmod (Tim Hochberg)Guido van Rossum1996-09-121-5/+34
* Raise exception instead of dropping imag part for conversion to int,Guido van Rossum1996-09-111-11/+9
* More detailed error message about exception in __del__Guido van Rossum1996-09-111-3/+6
* Correct typo in setattr: return -1 for error, not NULLGuido van Rossum1996-09-111-1/+1
* Multiply by 1000003 instead of 3 in string hachGuido van Rossum1996-09-111-1/+1
* Get rid of bogus MSC_VER undef of CHECK()Guido van Rossum1996-09-111-4/+0
* Don't dump core on complex % or divmod -- raise a TypeError exception.Guido van Rossum1996-09-111-2/+14
* 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