summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix a typo in SLOT0 macro for the declaration of cache_str.Guido van Rossum2001-08-281-1/+1
* Finish the previous checkin: also avoid getattr when calling the methodGuido van Rossum2001-08-281-25/+93
* Change in policy: when a slot_tp_xxx function looks for the __xxx__ method,Guido van Rossum2001-08-281-15/+57
* Two improvements suggested by Greg Stein:Barry Warsaw2001-08-271-2/+5
* PyString_FromFormatV: Massage platform %p output to match what gcc does,Tim Peters2001-08-251-0/+8
* getset_init(): the function name in the PyArg_ParseTuple() formatGuido van Rossum2001-08-241-1/+1
* Improve the error message issued when an unbound method is called withGuido van Rossum2001-08-241-3/+49
* repr's converted to using PyString_FromFormat() instead of sprintf'ingBarry Warsaw2001-08-2411-136/+95
* PyString_FromFormat() and PyString_FromFormatV(): Largely ripped fromBarry Warsaw2001-08-241-0/+155
* Add 'super', another new object type with magical properties.Guido van Rossum2001-08-241-0/+155
* Change the getset type to take an optional third function argument:Guido van Rossum2001-08-241-9/+21
* getset_descr_set(): guard against deletion (indicated by a set callGuido van Rossum2001-08-241-1/+4
* slot_tp_descr_get(): guard against NULL obj or type (bug reported byGuido van Rossum2001-08-241-2/+11
* getset_init(): make the arguments optional.Guido van Rossum2001-08-241-3/+11
* float_pow: Put *all* of the burden on the libm pow in normalTim Peters2001-08-231-45/+16
* Add new built-in type 'getset' (PyGetSet_Type).Guido van Rossum2001-08-231-0/+135