Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

confidence_filter.py 391B

123456789101112131415
  1. """Test for the confidence filter."""
  2. from __future__ import print_function
  3. class Client(object):
  4. """use provider class"""
  5. def __init__(self):
  6. self.set_later = 0
  7. def set_set_later(self, value):
  8. """set set_later attribute (introduce an inference ambiguity)"""
  9. self.set_later = value
  10. print(Client().set_later.lower())
  11. print(Client().foo) # [no-member]