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

[Feature Request]: Improving Python module error checking for type specific handles #26957

Open
jabraham17 opened this issue Mar 20, 2025 · 0 comments

Comments

@jabraham17
Copy link
Member

The Python module supports a few type-specific Python handles, aside from the generic Value.

Currently, this is

  • PyList
  • PySet
  • PyDict
  • PyTuple (in progress)
  • PyArray

A user can write code like this, which is semantically incorrect

def get_dict():
  return {'a': 1, 'b': 2}
var get_dict = mod.get('get_dict');
var obj = get_dict(owned PySet); // this will work
obj.add(1); // this will then fail in a confusing way.

However, Python does provide a way to check the type of a PyObject. So we can add checks to the initializers for these types. For example, in the init for PySet would could call PySet_Check to make sure the underlying Python object is actually a set

Note that the PyArray type already does this, if the underlying Python object does not support the buffer protocol it will throw an exception.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant