Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
39 contributions in the last year
Activity overview
Contribution activity
November 2020
Created 1 commit in 1 repository
Created a pull request in brettcannon/desugar that received 2 comments
Add an alternative lookup for the method __delete__ for data descriptors
From your (excellent) blog article Unravelling attribute access in Python: There are two kinds of descriptors: data and non-data. Both kind of des…
Created an issue in brettcannon/desugar that received 1 comment
The Python implementation of object.__getattribute__ does not detect descriptors correctly
From your Python implementation of object.__getattribute__ in your blog article Unravelling attribute access in Python:
class object: def __getattr…