diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-10 20:52:51 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-10 20:52:51 (GMT) |
commit | 64b5ce3a69569b203a39f74c5c03348ba0a67583 (patch) | |
tree | 87f71bc6ef25a7b7e11087afb1d7827bbcc4d474 /Lib/test/test_descr.py | |
parent | 8b4e43e768f3f49513f6f32f20ecb6478c1ad840 (diff) | |
download | cpython-64b5ce3a69569b203a39f74c5c03348ba0a67583.zip cpython-64b5ce3a69569b203a39f74c5c03348ba0a67583.tar.gz cpython-64b5ce3a69569b203a39f74c5c03348ba0a67583.tar.bz2 |
SF bug #460020: bug or feature: unicode() and subclasses.
Given an immutable type M, and an instance I of a subclass of M, the
constructor call M(I) was just returning I as-is; but it should return a
new instance of M. This fixes it for M in {int, long}. Strings, floats
and tuples remain to be done.
Added new macros PyInt_CheckExact and PyLong_CheckExact, to more easily
distinguish between "is" and "is a" (i.e., only an int passes
PyInt_CheckExact, while any sublass of int passes PyInt_Check).
Added private API function _PyLong_Copy.
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r-- | Lib/test/test_descr.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index f0f121b..35544c6 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -1340,6 +1340,9 @@ def inherits(): # because the int type gets first dibs.) verify(repr(hexint(7) + 9) == "0x10") verify(repr(hexint(1000) + 7) == "0x3ef") + a = hexint(12345) + #XXX verify(int(a) == 12345) + verify(int(a).__class__ is int) class octlong(long): __slots__ = [] @@ -1355,6 +1358,9 @@ def inherits(): # (Note that overriding __radd__ here only seems to work # because the example uses a short int left argument.) verify(str(5 + octlong(3000)) == "05675") + a = octlong(12345) + #XXX verify(long(a) == 12345L) + verify(long(a).__class__ is long) class precfloat(float): __slots__ = ['prec'] @@ -1364,6 +1370,9 @@ def inherits(): def __repr__(self): return "%.*g" % (self.prec, self) verify(repr(precfloat(1.1)) == "1.1") + a = precfloat(12345) + #XXX verify(float(a) == 12345.0) + #XXX verify(float(a).__class__ is float) class madtuple(tuple): _rev = None @@ -1382,6 +1391,12 @@ def inherits(): u = t.rev() v = u.rev() verify(v == t) + a = madtuple((1,2,3,4,5)) + verify(tuple(a) == (1,2,3,4,5)) + #XXX verify(tuple(a).__class__ is tuple) + a = madtuple(()) + verify(tuple(a) == ()) + #XXX verify(tuple(a).__class__ is tuple) class madstring(str): _rev = None @@ -1400,6 +1415,9 @@ def inherits(): t = s.rev() u = t.rev() verify(u == s) + s = madstring("12345") + #XXX verify(str(s) == "12345") + #XXX verify(str(s).__class__ is str) class madunicode(unicode): _rev = None @@ -1413,6 +1431,9 @@ def inherits(): u = madunicode("ABCDEF") verify(u.rev() == madunicode(u"FEDCBA")) verify(u.rev().rev() == madunicode(u"ABCDEF")) + u = madunicode(u"12345") + verify(unicode(u) == u"12345") + #XXX verify(unicode(u).__class__ is unicode) def all(): lists() |