hpy icon indicating copy to clipboard operation
hpy copied to clipboard

Use Python names for classes, not names derived from CPython internals

Open markshannon opened this issue 2 years ago • 3 comments

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 be h_ObjectType.
  • h_LongType should be h_IntType
  • h_UnicodeType should be h_StrType
  • Other uses of Unicode.

markshannon avatar Sep 22 '22 11:09 markshannon