-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Added complete Xlib stubs #9279
Conversation
This comment has been minimized.
This comment has been minimized.
pytype is quite unhappy. I see some complaint involving |
I think that you're right that google/pytype#1096 is relevant. But that's not all here:
|
I think I managed to work around pytype and mypy errors |
You have a talent for finding packages that break our CI in strange and unexpected ways 😀 |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@Avasam, do you fancy adding https://github.com/Avasam/Auto-Split (and other repos you're working on, if you like!) to |
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.
Thanks! I skimmed, a few comments below :)
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
||
_T = TypeVar("_T") | ||
ErrorHandler: TypeAlias = Callable[[XError, Optional[Request]], _T] | ||
Unused: TypeAlias = object |
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.
Do you think there's value in making this an alias in typeshed? I've used such an alias in D3dShot and pyscreeze as well.
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.
It's a much less complicated type; but Incomplete
is also a pretty simple alias, and that's certainly shown its worth. Sure, why not :)
Note though that aliases added to _typeshed
can only be used in third-party stubs after mypy/pyright cut releases that update their vendored copy of _typeshed
. Otherwise we run into the same problem we had in #9145, where a third-party stub starts using a type from _typeshed
that, from the type checker's point of view, "doesn't exist yet".
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.
Indeed the value doesn't come from the type behind the alias, but the name of the alias itself (like FileDescriptor, Incomplete, etc.). Since you're not against it, I'll open a PR as a suggestion, and if accepted I'll update object
--> Unused
separately. I do remember that problem we had >.<
This comment has been minimized.
This comment has been minimized.
Sure thing! Probably later this week. For instance I've been looking at the most popular projects (thousands of stars) using both pywin32 and mypy. Completing pywin32 stubs for 'em, and planning to suggest them to the primer. |
Co-authored-by: Alex Waygood <[email protected]>
Co-authored-by: Alex Waygood <[email protected]>
According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉 |
Thanks @Avasam! |
Removals from `stubinfo.py`: - `atomicwrites` is archived and deprecated at runtime; stubs were removed from typeshed in python/typeshed#8925 - `attrs` has had inline types for a very long time now - `chardet` recently cut a release with inline types; typeshed's stubs were marked obsolete in python/typeshed#9318 - `cryptography` has had inline types for a very long time now; the only reason why it's still in typeshed is because other typeshed packages need `types-cryptography` as a dependency, and our testing infrastructure therefore can't currently cope with it being removed from typeshed. - `emoji` recently cut a release bundling stubs with the runtime package; typeshed's stubs were marked obsolete in python/typeshed#9051 - `termcolor` recently cut a release with inline types; typeshed's stubs were marked obsolete in python/typeshed#8746 - `prettytable` recently cut a release with inline types; typeshed's stubs were marked obsolete in python/typeshed#9023 Additions: - Stubs for `Xlib` were added in python/typeshed#9279 - Stubs for `consolemenu` were added in python/typeshed#8820 - Stubs for `dockerfile_parse` were added in python/typeshed#9305 - Stubs for `flask_migrate` were added in python/typeshed#8967 - Stubs for `paho.mqtt` were added in python/typeshed#8853 - Stubs for `pycocotools` were added in python/typeshed#9086 - Stubs for many `pywin32` modules were added in python/typeshed#8825, and multiple follow-up PRs - Stubs for `pyscreeze` were added in python/typeshed#8823
These are the complete type stubs for https://github.com/python-xlib/python-xlib/ to the best of my ability. I typed this stub for use in https://github.com/Kalmat/PyWinCtl and https://github.com/Avasam/Auto-Split. So I know it's at least good enough for those projects.
Due to how
Struct
,GetAttrData
, andValueList
dynamically generate and get their values, every subclass and instance would have to specify their__init__
and attributes. I didn't go that far but at least still typed the base classes with an attribute getter and/or setter so that their dynamic nature is accurately represented.Any special case should be documented properly with comments (or I'll add more if there's still questions 😃 )