-
Notifications
You must be signed in to change notification settings - Fork 747
Cannot convert to managed type #1900
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
Comments
Can you clarify? The bug is that |
lostmsu
added a commit
to losttech/pythonnet
that referenced
this issue
Aug 8, 2022
…ng sequence protocol to .NET arrays when the target .NET type is `System.Object`. The conversion is still attempted when the target type is a `System.Array` fixes pythonnet#1900
This was referenced Aug 8, 2022
Yes, @lostmsu. I expect it to be PyObject. Then I can view the class members/properties in the C# world. System.Object[] does not allow me to do that. |
I believe this should be fixed now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment
Details
With the following code in C#, when a Python class has getitem() defined, it will be converted to an array (System.Object[]) in managed code:
List lst = new List();
using (Py.GIL())
{
using (var scope = Py.CreateScope())
{
scope.Set("lst", lst);
string text = @"
class DBRow:
def init(self, row, col_names):
self.row = row
self.col_names = col_names
col_names=['col1', 'col2', 'col3']
row=[1, '2', 3]
r = DBRow(row, col_names)
lst.Add(r)
";
The text was updated successfully, but these errors were encountered: