Skip to content
Snippets Groups Projects
Commit b565c369 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests/object_new: Better messages, check user __new__() method.

Make messages more verbose and easier to follow and check that user class'
__new__() is not called by object.__new__(user_class).
parent df6605ea
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,11 @@ except AttributeError:
class Foo:
def __new__(cls):
# Should not be called in this test
print("in __new__")
raise RuntimeError
def __init__(self):
print("in __init__")
self.attr = "something"
......@@ -19,12 +24,13 @@ class Foo:
o = object.__new__(Foo)
#print(o)
print(hasattr(o, "attr"))
print(isinstance(o, Foo))
print("Result of __new__ has .attr:", hasattr(o, "attr"))
print("Result of __new__ is already a Foo:", isinstance(o, Foo))
o.__init__()
#print(dir(o))
print(hasattr(o, "attr"))
print(o.attr)
print("After __init__ has .attr:", hasattr(o, "attr"))
print(".attr:", o.attr)
# should only be able to call __new__ on user types
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment