-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Add Python 3.15 socket SSL and platform updates #15734
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
Changes from 11 commits
ffe0bbc
86a678d
76a3d35
2cfd182
4ea6af6
0d077ad
199c014
94dd724
a853d10
a58beaf
2e64dbf
15cc880
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,9 @@ def mac_ver( | |
| release: str = "", versioninfo: tuple[str, str, str] = ("", "", ""), machine: str = "" | ||
| ) -> tuple[str, tuple[str, str, str], str]: ... | ||
|
|
||
| if sys.version_info >= (3, 13): | ||
| if sys.version_info >= (3, 15): | ||
| pass | ||
| elif sys.version_info >= (3, 13): | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i'm on mobile right now, so I can't select multiple rows, but can we fix the version_info check to use the standard format?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll change it so it's unconditionally |
||
| @deprecated("Deprecated since Python 3.13; will be removed in Python 3.15.") | ||
| def java_ver( | ||
| release: str = "", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
weird
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently this is correct: python/cpython#138276. It used to be available on all platforms (but it would fail on platforms without MREMAP), now it only exists if it works.