Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Section Persistence events listeners uses static variables and this is misleading #3

Closed
galou opened this issue Aug 15, 2024 · 3 comments
Labels
invalid This doesn't seem right

Comments

@galou
Copy link
Contributor

galou commented Aug 15, 2024

In Section Persistence events listeners the documentation may lead the workbench developer to understand that classes with the @proxy decorator are dataclasses. However, the variables var1 and var2 are static and this is for sure not what the developer wants.

@mnesarco
Copy link
Owner

Why do you think that var1 and var2 are static? They are not.

class A:
  var1: int
  def __init__(self, v: int):
     self.var1 = v   # Sets a non static var in self instance
     A.var1 = 0      # Sets a static var in A class

Check

>>> a = A(1)
>>> b = A(2)
>>> 
>>> a.var1
1
>>> b.var1
2
>>> A.var1
0
>>> 

@mnesarco mnesarco added the invalid This doesn't seem right label Aug 16, 2024
@galou
Copy link
Contributor Author

galou commented Aug 16, 2024

Sorry, my mistake. I overlooked that var1 and var2 at the class level are just type hints and not an assignment. By the way since A.var1 and self.var1 are different variables, isn't the type hint documenting a different variable when used at the class level?

@galou galou closed this as completed Aug 16, 2024
@mnesarco
Copy link
Owner

By the way since A.var1 and self.var1 are different variables, isn't the type hint documenting a different variable when used at the class level?

Well, python type hints are not strong declarations as in other languages. They are there just to aid the linter, autocomplete and static analysis.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid This doesn't seem right
Projects
None yet
Development

No branches or pull requests

2 participants