hpy
hpy copied to clipboard
Use Python names for classes, not names derived from CPython internals
IMO, we should be using names derived from the the name of the class, not from the legacy C-API implementation.
There may be other cases, but the obvious examples are:
-
h_BaseObjectType
should beh_ObjectType
. -
h_LongType
should beh_IntType
-
h_UnicodeType
should beh_StrType
- Other uses of
Unicode
.