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
/
Lib
/
test
/
test_descr.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault
Guido van Rossum
2002-03-18
1
-0/+5
*
"Fix" for SF bug #520644: __slots__ are not pickled.
Guido van Rossum
2002-03-14
1
-0/+89
*
Test for the fix I just checked in to moduleobject.c.
Guido van Rossum
2002-03-12
1
-0/+12
*
Fix typo
Neal Norwitz
2002-03-11
1
-1/+1
*
Add a check that SF bug 516727 is really fixed.
Guido van Rossum
2002-03-11
1
-0/+10
*
Bugfix candidate.
Guido van Rossum
2002-03-11
1
-0/+3
*
_PyLong_Copy(): was creating a copy of the absolute value, but should
Tim Peters
2002-03-02
1
-0/+1
*
SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects
Guido van Rossum
2002-03-01
1
-0/+4
*
Fix for SF bug ##497426: can't deepcopy recursive new objects
Guido van Rossum
2001-12-28
1
-1/+10
*
(Merge into trunk.)
Guido van Rossum
2001-12-14
1
-0/+10
*
Additional coverage tests by Neil Norwitz.
Guido van Rossum
2001-12-11
1
-0/+66
*
SF bug #488514: -Qnew needs work
Tim Peters
2001-12-06
1
-0/+5
*
Fix SF bug #489581: __slots__ leak.
Guido van Rossum
2001-12-05
1
-0/+34
*
At the PythonLabs meeting someone mentioned it would make Jim really
Guido van Rossum
2001-12-05
1
-6/+1
*
Fix SF bug #486144: Uninitialized __slot__ vrbl is None.
Guido van Rossum
2001-12-04
1
-5/+7
*
Fix of SF bug #475877 (Mutable subtype instances are hashable).
Guido van Rossum
2001-12-03
1
-0/+24
*
Address SF patch #480716 as well as related issues.
Guido van Rossum
2001-12-03
1
-1/+51
*
- Change all remaining assertions into verify() and vereq() calls.
Guido van Rossum
2001-11-24
1
-14/+42
*
More simple test cases for mixed classic+new multiple inheritance.
Tim Peters
2001-11-14
1
-0/+35
*
Changing diapers reminded Guido that he wanted to allow for some measure
Tim Peters
2001-11-14
1
-8/+47
*
Fix bad bug in structseq slicing (NULL pointers in result). Reported by
Tim Peters
2001-10-30
1
-5/+1
*
To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis).
Tim Peters
2001-10-30
1
-0/+4
*
Just changed some continued-line indentation to read better, due to
Tim Peters
2001-10-30
1
-3/+3
*
Minimal test for __del__ hook.
Guido van Rossum
2001-10-30
1
-0/+12
*
Rename "dictionary" (type and constructor) to "dict".
Tim Peters
2001-10-29
1
-36/+36
*
dictionary() constructor:
Tim Peters
2001-10-27
1
-4/+4
*
dict_constructor(): The last test was passing for the wrong reason (it
Tim Peters
2001-10-26
1
-1/+1
*
Generalize dictionary() to accept a sequence of 2-sequences. At the
Tim Peters
2001-10-26
1
-8/+43
*
Allow assignment to newinstance.__dict__.
Guido van Rossum
2001-10-26
1
-0/+26
*
Fixed denial-of-weak-ref-support test; Jeremy changed the error message
Fred Drake
2001-10-22
1
-1/+1
*
Methods of built-in types now properly check for keyword arguments
Guido van Rossum
2001-10-22
1
-0/+9
*
Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink)
Guido van Rossum
2001-10-18
1
-0/+12
*
SF bug [#468061] __str__ ignored in str subclass.
Tim Peters
2001-10-16
1
-0/+31
*
Completely get rid of __dynamic__ and the corresponding
Guido van Rossum
2001-10-15
1
-53/+21
*
SF bug [#470040] ParseTuple t# vs subclasses.
Tim Peters
2001-10-12
1
-1/+32
*
Another step in the right direction: when a new class's attribute
Guido van Rossum
2001-10-11
1
-16/+79
*
Add a bunch of tests for a list subclass that would have caught the
Guido van Rossum
2001-10-09
1
-0/+22
*
It turned out not so difficult to support old-style numbers (those
Guido van Rossum
2001-10-09
1
-5/+6
*
Change all occurrences of verify(x == y) into vereq(x, y), since when
Guido van Rossum
2001-10-08
1
-374/+376
*
class_docstrings(): The new-style class tests should use new-style
Tim Peters
2001-10-04
1
-4/+4
*
SF bug [#467331] ClassType.__doc__ always None.
Tim Peters
2001-10-04
1
-1/+34
*
dynamics(): add a dummy __getattr__ method to the C class so that the
Guido van Rossum
2001-10-03
1
-0/+5
*
pickles():
Guido van Rossum
2001-10-02
1
-18/+22
*
Add a few ``__dynamic__ = 0'' lines in classes that need to preserve
Guido van Rossum
2001-09-29
1
-3/+7
*
It's a fact: for binary operators, *under certain circumstances*,
Guido van Rossum
2001-09-28
1
-1/+36
*
Changes to copy() and deepcopy() in copy.py to support __reduce__ as a
Guido van Rossum
2001-09-28
1
-1/+43
*
- Provisional support for pickling new-style objects. (*)
Guido van Rossum
2001-09-25
1
-1/+62
*
Make __class__ assignment possible, when the object structures are the
Guido van Rossum
2001-09-25
1
-0/+28
*
Make properties discoverable from Python:
Tim Peters
2001-09-24
1
-2/+28
*
Another comparison patch-up: comparing a type with a dynamic metatype
Guido van Rossum
2001-09-24
1
-0/+7
[next]