Skip to content

Verify drivers correctly import struct #782

Closed
@tannewt

Description

@tannewt

In 2.x struct is available as ustruct. We need to make sure all drivers included in the bundle will work with 3.x which has renamed it to struct.

For backwards compatiblity it should be:

try:
    import struct
except ImportError:
    import ustruct as struct

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions