- 15 Apr, 2006 1 commit
-
-
Thomas Wouters authored
'dictproxy' (which is a read-only non-dict mapping type that can't be passed to exec.) The failures the test finds are behavioural differences between old- and new-style classes that may or may not be intended.
-
- 24 Mar, 2006 1 commit
-
-
Neal Norwitz authored
-
- 04 May, 2005 1 commit
-
-
Michael W. Hudson authored
(spotted by reading pypy-svn :)
-
- 19 Jul, 2004 1 commit
-
-
Neil Schemenauer authored
__oct__, and __hex__. Raise TypeError if an invalid type is returned. Note that PyNumber_Int and PyNumber_Long can still return ints or longs. Fixes SF bug #966618.
-
- 20 Oct, 2003 1 commit
-
-
Walter Dörwald authored
(From SF patch #810751)
-
- 29 Oct, 2002 1 commit
-
-
Guido van Rossum authored
Since properties are supported here, is possible that instance_getattr2() raises an exception. Fix all code that made this assumption. Backport candidate.
-
- 30 Jul, 2002 1 commit
-
-
Barry Warsaw authored
imports of test modules now import from the test package. Other related oddities are also fixed (like DeprecationWarning filters that weren't specifying the full import part, etc.). Also did a general code cleanup to remove all "from test.test_support import *"'s. Other from...import *'s weren't changed.
-
- 13 Jun, 2002 1 commit
-
-
Guido van Rossum authored
suggested there, based upon a better analysis (__getattr__ is a red herring). Will backport to 2.2.
-
- 11 Dec, 2001 1 commit
-
-
Tim Peters authored
-
- 20 Aug, 2001 1 commit
-
-
Barry Warsaw authored
pass these tests.
-
- 22 Jan, 2001 1 commit
-
-
Guido van Rossum authored
test_class.py.
-
- 18 Jan, 2001 1 commit
-
-
Guido van Rossum authored
not __hash__ raises TypeError.
-
- 23 Oct, 2000 1 commit
-
-
Fred Drake authored
-
- 04 Oct, 2000 1 commit
-
-
Trent Mick authored
PyLong, was used for the return value of a class __hash__ method, which *must* return a PyInt. Solution: hash() the id(self) value.
-
- 17 Aug, 2000 1 commit
-
-
Thomas Wouters authored
is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour.
-