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

Analyze some popular python projects on github to find out, which language features are actually used #52

Closed
3 tasks
dours opened this issue Dec 13, 2021 · 1 comment
Assignees
Milestone

Comments

@dours
Copy link
Collaborator

dours commented Dec 13, 2021

  • Statically check if __gettatr__, __setattr__ and other special attributes are accessed or overloaded in the code
  • check for metaclasses in inheritance
  • Instrumentalize classes the code with our own __setattr__ in order to find if attributes are dynamically added via the usual syntax (like using o.x = 1 in case when object o does not have an attribute x)
@dours
Copy link
Collaborator Author

dours commented Nov 1, 2022

I wanted to do this in order to decide what language features to support. Other ways to decide were used in fact.

@dours dours closed this as completed Nov 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant