Ad
  • Custom User Avatar

    Try now, it should be fixed :)

  • Custom User Avatar

    See below. This has been reported twice already ^^".

  • Custom User Avatar

    What does the test message say?

  • Default User Avatar

    If you are trying in python, you can always redefine the __getattribute__ method to check which member is being accessed :

    def __getattribute__(*args) :
      print("member %s is being accessed" % (args[1]))
      return object.__getattribute__(*args)
    

    Where object is the argument of the class