Skip to content
Advertisement

Python ctypes behaviour with variable types

I’m using a third party python library, that is using ctypes (it uses a dll). I’m not very familiar with ctypes. The lib offers a type definition and a structure definition as given in the minimum example below. I’m trying to assign the member variable myClassInst.MSGTYPE the value of the constant MYConst. Afterwards I want to check the value with the unittest assertion macro but check fails due to different types. The different types are shown in the output below, too.

I do not understand, why the types differ? What’s the correct way to write that piece of code? I’m quite new to Python, so thank you in advance for your support

JavaScript

The output is:

JavaScript

Advertisement

Answer

In a ctypes structure, ctypes “helpfully” converts to/from Python objects when reading/writing the member variables, so reading MYConst produces a Python int.

Change MYConst = MyType(0xED) to MyConst = 0xED and it will work correctly.

(and THANK YOU for a standalone example with unit test!)

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement