Skip to content

Resolve 3.13 issues for ctypes._endian #12372

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

Merged
merged 17 commits into from
Aug 3, 2024

Conversation

max-muoto
Copy link
Contributor

@max-muoto max-muoto commented Jul 20, 2024

Starting in 3.13, we're no long doing a star import from ctypes: python/cpython#105768

@max-muoto max-muoto changed the title Resolve 3.13 issues Resolve 3.13 issues for ctypes._endian Jul 20, 2024
@max-muoto max-muoto marked this pull request as draft July 20, 2024 17:20

This comment has been minimized.

@max-muoto max-muoto marked this pull request as ready for review July 20, 2024 17:50

This comment has been minimized.

This comment has been minimized.


if sys.version_info >= (3, 12):
if sys.version_info >= (3, 13):
from ctypes import Array as Array, Structure, Union
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why add Array as new re-export?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's just imported there. This is a private module, and it doesn't seem like it's intentionally re-exported.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see, was trying to match the runtime as closely as possible, but makes sense.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


if sys.version_info >= (3, 12):
if sys.version_info < (3, 13):
from _ctypes import RTLD_GLOBAL as RTLD_GLOBAL, RTLD_LOCAL as RTLD_LOCAL
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All of these look like incidental re-exports, can we remove all the as imports?

Looks like it used to do from ctypes import *.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me also add an ignore for older Python versions.

This comment has been minimized.

This comment has been minimized.

@max-muoto
Copy link
Contributor Author

@JelleZijlstra Should be ready for another look, apologies for the delay.

Copy link
Contributor

github-actions bot commented Aug 3, 2024

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

@JelleZijlstra JelleZijlstra merged commit 0fd6cd2 into python:main Aug 3, 2024
63 checks passed
max-muoto added a commit to max-muoto/typeshed that referenced this pull request Aug 17, 2024
max-muoto added a commit to max-muoto/typeshed that referenced this pull request Sep 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants