Steven D'Aprano <steve+pyt...@pearwood.info> added the comment:
The error message is correct. The bug is in your code. Also, the code you tell 
us that you are running is not the same as the code you are actually running.

You should not call __init__ directly as you do:

    # this is wrong
    Person.__init__("Some","One",21,"American")

Do this instead:

    Person("Some","One",21,"American")


Closing this as it is not a bug in Python, it is a bug in your code.

----------
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue36574>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to