Discussion:
[Python.NET] PyType_Ready "AccessViolationException was unhandled"
Guillaume Pichard
2012-01-31 15:39:42 UTC
Permalink
Hello,

I have an exception:

System.AccessViolationException was unhandled
Message=Attempted to read or write protected memory. This is often
an indication that other memory is corrupt.
Source=Python.Runtime

when using Converter.ToPythonImplicit with my own C# class as value.

CustomClass value = new CustomClass();
Converter.ToPythonImplicit(value);

I have the exception in typemanager.cs function CreateType when
calling Runtime.PyType_Ready(type);

What did I do wrong ?

Thanks,
Guillaume.

_________________________________________________
Python.NET mailing list - PythonDotNet-+ZN9ApsXKcEdnm+***@public.gmane.org
http://mail.python.org/mailman/listinfo/pythondotnet
MATHE MANOJ
2012-01-31 17:46:46 UTC
Permalink
Hello Guillaume

I think its because of base datatype casting inside that method.

Manoj <http://manojmathe.blogspot.com/>



On Tue, Jan 31, 2012 at 9:09 PM, Guillaume Pichard <
Post by Guillaume Pichard
Hello,
System.**AccessViolationException was unhandled
Message=Attempted to read or write protected memory. This is often an
indication that other memory is corrupt.
Source=Python.Runtime
when using Converter.ToPythonImplicit with my own C# class as value.
CustomClass value = new CustomClass();
Converter.ToPythonImplicit(**value);
I have the exception in typemanager.cs function CreateType when calling
Runtime.PyType_Ready(type);
What did I do wrong ?
Thanks,
Guillaume.
______________________________**___________________
http://mail.python.org/**mailman/listinfo/pythondotnet<http://mail.python.org/mailman/listinfo/pythondotnet>
Loading...