Set explicit ctypes _layout_ in coff.py for Python 3.14#693
Merged
Conversation
Python 3.14 deprecates the implicit memory layout for ctypes Structures that set _pack_, requiring an explicit _layout_ (slated to become an error in 3.19). COFF is a Windows/MSVC format, and the implicit default has always been the MSVC layout, so set _layout_ = "ms" to preserve behavior and silence the warning. The attribute is ignored on Python 3.12/3.13, so older supported versions are unaffected. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Python 3.14 deprecates the implicit memory layout for
ctypesStructures that set_pack_, requiring an explicit_layout_. The implicit default is slated to become an error in Python 3.19.This produced:
COFF is a Windows/MSVC format, and the implicit default has always been the MSVC layout, so this sets
_layout_ = "ms"on the four affected structures (CoffFileHeader,CoffSectionTableEntry,CoffSymbolTableEntry,CoffRelocationTableEntry) to preserve behavior and silence the warning.Compatibility
_layout_is ignored as an unknown class attribute on Python 3.12/3.13, so the change is a no-op on older supported versions (requires-python = ">=3.12").Verification
Importing the module with
DeprecationWarningpromoted to an error no longer warns, and packed struct sizes are unchanged (20-byte header, 10-byte relocation entry).🤖 Generated with Claude Code