index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix a memory leak in str_subtype_new(). (All the other
Guido van Rossum
2001-08-31
1
-3/+3
*
Give 'super' a decent repr(), and readonly attributes to access the
Guido van Rossum
2001-08-30
1
-11/+36
*
PyObject_Repr(): add missing ">" back at end of format string: "<%s
Guido van Rossum
2001-08-30
1
-1/+1
*
Squash new compiler wng.
Tim Peters
2001-08-30
1
-1/+1
*
Pytype_GenericAlloc(): round up size so we zap all four bytes of the
Guido van Rossum
2001-08-30
1
-16/+51
*
More stuff discovered while writing the simplest of testcases:
Guido van Rossum
2001-08-30
1
-2/+5
*
Ah, the joy of writing test cases...
Guido van Rossum
2001-08-30
1
-1/+1
*
Removed some unreachable break statements to silence SGI compiler.
Sjoerd Mullender
2001-08-30
1
-3/+0
*
Give the internal immutable list type .extend and .pop methods (they
Tim Peters
2001-08-30
1
-0/+2
*
Safety measures now that str and tuple are subclassable:
Guido van Rossum
2001-08-30
1
-1/+9
*
Make 'super' subclassable. (Not sure how useful this is yet. :-)
Guido van Rossum
2001-08-30
1
-1/+1
*
Make unicode subclassable.
Guido van Rossum
2001-08-30
1
-2/+32
*
Make str and tuple types subclassable.
Guido van Rossum
2001-08-30
2
-4/+54
*
Make getset subclassable.
Guido van Rossum
2001-08-30
1
-1/+1
*
Fix typo: double semicolons.
Guido van Rossum
2001-08-30
2
-2/+2
*
Squash new compiler wng in debug build.
Tim Peters
2001-08-30
1
-1/+1
*
Use new GC API. Remove usage of BASICSIZE macros.
Neil Schemenauer
2001-08-29
1
-18/+18
*
Use new GC API.
Neil Schemenauer
2001-08-29
7
-89/+66
*
Remove GC related code. It lives in gcmodule now.
Neil Schemenauer
2001-08-29
1
-26/+1
*
Make frames a PyVarObject. Use new GC API.
Neil Schemenauer
2001-08-29
1
-30/+14
*
Make int, long and float subclassable.
Guido van Rossum
2001-08-29
3
-14/+111
*
Fix super() so that it is usable for static methods (like __new__) as well.
Guido van Rossum
2001-08-29
1
-8/+27
*
Fix a typo in SLOT0 macro for the declaration of cache_str.
Guido van Rossum
2001-08-28
1
-1/+1
*
Finish the previous checkin: also avoid getattr when calling the method
Guido van Rossum
2001-08-28
1
-25/+93
*
Change in policy: when a slot_tp_xxx function looks for the __xxx__ method,
Guido van Rossum
2001-08-28
1
-15/+57
*
Two improvements suggested by Greg Stein:
Barry Warsaw
2001-08-27
1
-2/+5
*
PyString_FromFormatV: Massage platform %p output to match what gcc does,
Tim Peters
2001-08-25
1
-0/+8
*
getset_init(): the function name in the PyArg_ParseTuple() format
Guido van Rossum
2001-08-24
1
-1/+1
*
Improve the error message issued when an unbound method is called with
Guido van Rossum
2001-08-24
1
-3/+49
*
repr's converted to using PyString_FromFormat() instead of sprintf'ing
Barry Warsaw
2001-08-24
11
-136/+95
*
PyString_FromFormat() and PyString_FromFormatV(): Largely ripped from
Barry Warsaw
2001-08-24
1
-0/+155
*
Add 'super', another new object type with magical properties.
Guido van Rossum
2001-08-24
1
-0/+155
*
Change the getset type to take an optional third function argument:
Guido van Rossum
2001-08-24
1
-9/+21
*
getset_descr_set(): guard against deletion (indicated by a set call
Guido van Rossum
2001-08-24
1
-1/+4
*
slot_tp_descr_get(): guard against NULL obj or type (bug reported by
Guido van Rossum
2001-08-24
1
-2/+11
*
getset_init(): make the arguments optional.
Guido van Rossum
2001-08-24
1
-3/+11
*
float_pow: Put *all* of the burden on the libm pow in normal
Tim Peters
2001-08-23
1
-45/+16
*
Add new built-in type 'getset' (PyGetSet_Type).
Guido van Rossum
2001-08-23
1
-0/+135
*
err_ovf(): only raise OverflowError when OverflowWarning was raised.
Guido van Rossum
2001-08-23
1
-1/+2
*
int_pow(): Repair typo when passing on to float pow (the 2nd argument was
Tim Peters
2001-08-23
1
-1/+1
*
Change all case where we used to raise OverflowError to issue a
Guido van Rossum
2001-08-23
1
-56/+88
*
Merge changes from r22a2-branch back into trunk. Also, change patch
Barry Warsaw
2001-08-22
1
-7/+30
*
Address SF bug #442813. The sequence getitem wrappers should do
Guido van Rossum
2001-08-17
1
-8/+50
*
Weak reference support, closing SF bug #451773.
Guido van Rossum
2001-08-17
1
-21/+51
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
7
-6/+94
*
type_new(): look for __dynamic__ at the module level (after looking in
Guido van Rossum
2001-08-17
1
-14/+54
*
Fix core dump in repr() of instancemethod whose class==NULL.
Guido van Rossum
2001-08-17
1
-7/+11
*
instance_getattr2(): rewritten to remove unnecessary stuff and
Guido van Rossum
2001-08-17
1
-24/+13
*
Instance methods: allow a NULL value for im_class.
Guido van Rossum
2001-08-17
1
-2/+2
*
type_new(): only defer to the winning metatype if it's different from
Guido van Rossum
2001-08-17
1
-8/+12
[next]