Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Make object types real Python types #393
Comments
As well, it would be good to make use of python |
Following up from #231, the suggestion made by @doerwalter was to make object types real Python types so that
type(obj) == obj.type
. With Python 3.x this is now possible by creating a heap type.