summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* tp_new_wrapper(): A subtle change in the check for safe use.Guido van Rossum2001-09-141-1/+1
* Add call_maybe(): a variant of call_method() that returnsGuido van Rossum2001-09-141-10/+67
* call_method():Guido van Rossum2001-09-141-36/+27
* PyObject_CallObject(): this may as well call PyEval_CallObject()Guido van Rossum2001-09-141-16/+1
* _PyObject_Dump(): print the type of the object. This is by far theGuido van Rossum2001-09-141-2/+8
* The end of [#460467] file objects should be subclassable.Tim Peters2001-09-141-30/+63
* Changed the dict implementation to take "string shortcuts" only whenTim Peters2001-09-141-13/+16
* Get rid of builtin_open() entirely (the C code and docstring, not theTim Peters2001-09-131-2/+2
* Now that file objects are subclassable, you can get at the file constructorTim Peters2001-09-131-0/+8
* type_call(): Change in policy. The keyword args (if any) are now passedTim Peters2001-09-131-1/+1
* based upon a suggestion in c.l.py, this slight expansion of theSkip Montanaro2001-09-131-1/+1
* SF bug [#460467] file objects should be subclassable.Tim Peters2001-09-131-23/+100
* Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-122-12/+20
* If interning an instance of a string subclass, intern a real string objectTim Peters2001-09-121-4/+20
* str_subtype_new, unicode_subtype_new:Tim Peters2001-09-122-15/+26
* More on bug 460020: disable many optimizations of unicode subclasses.Tim Peters2001-09-121-10/+11
* More bug 460020: lots of string optimizations inhibited for stringTim Peters2001-09-121-79/+46
* long_invert(): tiny speed and space optimization.Tim Peters2001-09-111-2/+1
* More bug 460020. Disable a number of long optimizations for long subclasses.Tim Peters2001-09-111-18/+15
* More bug 460020: when F is a subclass of float, disable the unary plusTim Peters2001-09-111-2/+6
* More bug 460020. When I is a subclass of int, disable the +I(whatever),Tim Peters2001-09-111-10/+10
* The endless 460020 bug.Tim Peters2001-09-111-6/+9
* Replace a few places where X->ob_type was compared to &PyXXX_Type withGuido van Rossum2001-09-112-7/+7
* Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-4/+12
* PyUnicode_FromEncodedObject(): Repair memory leak in an error case.Tim Peters2001-09-111-2/+2
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-112-2/+8
* Fix tortured comment -- I must be on drugs today.Tim Peters2001-09-101-2/+2
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-101-1/+5
* More for SF bug [#460020] bug or feature: unicode() and subclassesTim Peters2001-09-101-1/+5
* SF bug #460020: bug or feature: unicode() and subclasses.Tim Peters2001-09-102-3/+29
* _portable_fseek():Guido van Rossum2001-09-101-0/+6
* PyObject_Dir():Guido van Rossum2001-09-101-2/+6
* Generalize operator.indexOf (PySequence_Index) to work with anyTim Peters2001-09-083-74/+66
* PyClass_New(): put the extended Don Beaudry hook back in. When one ofGuido van Rossum2001-09-071-4/+14
* PySequence_Check(), PyMapping_Check(): only return true if theGuido van Rossum2001-09-071-2/+4
* PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessingGuido van Rossum2001-09-071-0/+3
* long_true_divide: reliably force underflow to 0 when the denominatorTim Peters2001-09-061-0/+2
* Rename 'getset' to 'property'.Guido van Rossum2001-09-061-23/+23
* Revert parts of patch #453627, documenting the resulting test failuresMartin v. Löwis2001-09-061-17/+1
* Enable large file support on Win32 systems.Tim Peters2001-09-061-1/+1
* Better error msg for 3-arg pow with a float argument.Tim Peters2001-09-051-1/+1
* Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back.Guido van Rossum2001-09-051-0/+30
* Rework the way we try to check for libm overflow, given that C99 no longerTim Peters2001-09-051-16/+1
* Changes to automatically enable large file support on some systems.Guido van Rossum2001-09-051-12/+20
* Patch #453627: Define the following macros when compiling on a UnixWare 7.x s...Martin v. Löwis2001-09-051-1/+17
* Make the error msgs in our pow() implementations consistent.Tim Peters2001-09-053-8/+15
* Try to recover from that glibc's ldexp apparently doesn't set errno onTim Peters2001-09-051-2/+2
* At Guido's suggestion, here's a new C API function, PyObject_Dir(), likeTim Peters2001-09-041-0/+145
* Change long/long true division to return as many good bits as it can;Tim Peters2001-09-042-2/+40
* Move int_true_divide next to the other division routines.Tim Peters2001-09-041-6/+6