Skip to content
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

Merged
merged 19 commits into from
Nov 30, 2022
Merged

Added complete Xlib stubs #9279

merged 19 commits into from
Nov 30, 2022

Conversation

Avasam
Copy link
Collaborator

@Avasam Avasam commented Nov 25, 2022

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, and ValueList 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 😃 )

@github-actions

This comment has been minimized.

@JelleZijlstra
Copy link
Member

pytype is quite unhappy. I see some complaint involving collections.abc.Callable; it's possible using typing.Callable will work better.

@Avasam
Copy link
Collaborator Author

Avasam commented Nov 25, 2022

pytype is quite unhappy. I see some complaint involving collections.abc.Callable; it's possible using typing.Callable will work better.

pytype.load_pytd.BadDependencyError: Unresolved class: 'collections.abc.Callable', referenced from 'Xlib.xobject.fontable'

Callable isn't even referenced directly in Xlib.xobject.fontable. Maybe because it's using the TypeAlias ErrorHandler from _typing.pyi? Nope
And other similar issues.

I think that you're right that google/pytype#1096 is relevant. But that's not all here:

stubs/python-xlib/Xlib/xobject/drawable.pyi (3.8): pytype.pytd.visitors.SymbolLookupError: Function(name='map', signatures=(Signature(params=(Parameter(name='self', type=AnythingType(), kind=<ParameterKind.REGULAR: 'regular'>, optional=False, mutated_type=None), Parameter(name='onerror', type=UnionType(type_list=(CallableType(base_type=ClassType(typing.Callable), parameters=(ClassType(Xlib.error.XError), UnionType(type_list=(ClassType(Xlib.protocol.rq.Request), ClassType(builtins.NoneType))), ClassType(builtins.object))),
ClassType(builtins.NoneType))), kind=<ParameterKind.REGULAR: 'regular'>, optional=True,
mutated_type=None)), starargs=None, starstarargs=None, return_type=ClassType(builtins.NoneType), exceptions=(), template=()),), kind=<MethodKind.METHOD: 'method'>, flags=<MethodFlag.NONE: 1>) is not a type

stubs/python-xlib/Xlib/xobject/fontable.pyi (3.8): pytype.load_pytd.BadDependencyError:
No display._BaseDisplay in module Xlib, referenced from 'Xlib.xobject.resource'

@Avasam
Copy link
Collaborator Author

Avasam commented Nov 27, 2022

I think I managed to work around pytype and mypy errors
Refs:
google/pytype#1324
python/mypy#14205

@AlexWaygood
Copy link
Member

AlexWaygood commented Nov 27, 2022

You have a talent for finding packages that break our CI in strange and unexpected ways 😀

@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@AlexWaygood
Copy link
Member

@Avasam, do you fancy adding https://github.com/Avasam/Auto-Split (and other repos you're working on, if you like!) to mypy_primer, so that we can get some more coverage for some of the stubs packages you're contributing? :)

Copy link
Member

@AlexWaygood AlexWaygood left a 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 :)

@Avasam Avasam requested a review from AlexWaygood November 29, 2022 01:14
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.


_T = TypeVar("_T")
ErrorHandler: TypeAlias = Callable[[XError, Optional[Request]], _T]
Unused: TypeAlias = object
Copy link
Collaborator Author

@Avasam Avasam Nov 29, 2022

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.

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 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".

Copy link
Collaborator Author

@Avasam Avasam Nov 30, 2022

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 >.<

@github-actions

This comment has been minimized.

@Avasam
Copy link
Collaborator Author

Avasam commented Nov 29, 2022

@Avasam, do you fancy adding https://github.com/Avasam/Auto-Split (and other repos you're working on, if you like!) to mypy_primer, so that we can get some more coverage for some of the stubs packages you're contributing? :)

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.

@github-actions
Copy link
Contributor

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

@AlexWaygood AlexWaygood merged commit ee69f60 into python:main Nov 30, 2022
@AlexWaygood
Copy link
Member

Thanks @Avasam!

@Avasam Avasam deleted the Xlib branch November 30, 2022 16:16
hauntsaninja pushed a commit to python/mypy that referenced this pull request Dec 20, 2022
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
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