Hacker News new | ask | show | jobs
by void_one 1567 days ago
Bot the very approach is fun:

  class RusselSet(set):
      def __contains__(self, other):
          return other not in other

  paradox = RusselSet()

  paradox in paradox  # ?