• 1 Post
  • 1 Comment
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle

  • I agree with the article that dataclasses and namedtuples aren’t as good as they can be. But I think the solution should be to make dataclasses native, and not namedtuples.

    So we could write something like:

    dataclass Point:
      x: int   @"why not also add new syntax for documentation?"
      y: int   @"the size of translation on the Y axis"
    
      def methods_as_usual(self):
          ...