summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Move long_true_divide next to the other division routines (for clarity!).Tim Peters2001-09-041-6/+6
* Raise OverflowError when appropriate on long->float conversion. Most ofTim Peters2001-09-043-23/+27
* PEP 238 documented -Qwarn as warning only for classic int or longGuido van Rossum2001-09-042-2/+2
* Introduce new private API function _PyLong_AsScaledDouble. Not used yet,Tim Peters2001-09-041-0/+52
* New restriction on pow(x, y, z): If z is not None, x and y must be ofTim Peters2001-09-033-18/+20
* Repair typo in comment.Tim Peters2001-09-021-1/+1
* Make dictionary() a real constructor. Accepts at most one argument, "aTim Peters2001-09-021-2/+29
* Rewrite the tuple() docstring to parallel the list() docstring.Tim Peters2001-09-021-4/+4
* Repair apparent cut'n'pasteo in tuple() docstring.Tim Peters2001-09-021-1/+1
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-315-5/+88
* Fix a memory leak in str_subtype_new(). (All the otherGuido van Rossum2001-08-311-3/+3
* Give 'super' a decent repr(), and readonly attributes to access theGuido van Rossum2001-08-301-11/+36
* PyObject_Repr(): add missing ">" back at end of format string: "<%sGuido van Rossum2001-08-301-1/+1
* Squash new compiler wng.Tim Peters2001-08-301-1/+1
* Pytype_GenericAlloc(): round up size so we zap all four bytes of theGuido van Rossum2001-08-301-16/+51
* More stuff discovered while writing the simplest of testcases:Guido van Rossum2001-08-301-2/+5
* Ah, the joy of writing test cases...Guido van Rossum2001-08-301-1/+1
* Removed some unreachable break statements to silence SGI compiler.Sjoerd Mullender2001-08-301-3/+0
* Give the internal immutable list type .extend and .pop methods (theyTim Peters2001-08-301-0/+2
* Safety measures now that str and tuple are subclassable:Guido van Rossum2001-08-301-1/+9
* Make 'super' subclassable. (Not sure how useful this is yet. :-)Guido van Rossum2001-08-301-1/+1
* Make unicode subclassable.Guido van Rossum2001-08-301-2/+32
* Make str and tuple types subclassable.Guido van Rossum2001-08-302-4/+54
* Make getset subclassable.Guido van Rossum2001-08-301-1/+1
* Fix typo: double semicolons.Guido van Rossum2001-08-302-2/+2
* Squash new compiler wng in debug build.Tim Peters2001-08-301-1/+1
* Use new GC API. Remove usage of BASICSIZE macros.Neil Schemenauer2001-08-291-18/+18
* Use new GC API.Neil Schemenauer2001-08-297-89/+66
* Remove GC related code. It lives in gcmodule now.Neil Schemenauer2001-08-291-26/+1
* Make frames a PyVarObject. Use new GC API.Neil Schemenauer2001-08-291-30/+14
* Make int, long and float subclassable.Guido van Rossum2001-08-293-14/+111
* Fix super() so that it is usable for static methods (like __new__) as well.Guido van Rossum2001-08-291-8/+27