-
-
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
Add type hints for the zoneinfo module #4038
Conversation
This is the implementation for PEP 615: https://www.python.org/dev/peps/pep-0615/ It is present starting in 3.9.0 beta 1.
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.
Thank you for the PR, but also for the PEP and implementation, this will be very helpful! A few remarks:
Why didn't you include ZoneInfoNotFoundError
and InvalidTZPathWarning
?
stdlib/3.9/zoneinfo/__init__.pyi
Outdated
from typing import IO, Optional, Sequence, Type, Union | ||
|
||
class ZoneInfo(tzinfo): | ||
_T = typing.TypeVar("_T", bound="ZoneInfo") |
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.
Typevars in typeshed are defined at top-level. This is possibly also why pytype chokes.
stdlib/3.9/zoneinfo/__init__.pyi
Outdated
# a sequence of strings is required. This should be remedied if a solution | ||
# to this typing bug is found: https://github.com/python/typing/issues/256 | ||
def reset_tzpath( | ||
to: Optional[Sequence[Union[os.PathLike, str]]] = None |
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.
to: Optional[Sequence[Union[os.PathLike, str]]] = None | |
to: Optional[Iterable[Union[os.PathLike, 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.
The PEP specifies that this is a Sequence
rather than an Iterable
: https://www.python.org/dev/peps/pep-0615/#reset-tzpath-function
(clear_cache
does specify an Iterable
).
I don't think it's critical but I'd rather start strict and lessen the constraints later if necessary rather than the other way around. (I think we maybe should make reset_tzpath
reject anything without a length before the next beta release, so that this is also enforced at runtime).
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.
Oh, one question: why the = ...
instead of = None
?
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.
Your reasoning makes sense.
Defaults don't matter for type checking. For consistency's sake, flake8-pyi enforces a default of ...
. It's one less thing to check and maintain in stubs.
stdlib/3.9/zoneinfo/__init__.pyi
Outdated
def reset_tzpath( | ||
to: Optional[Sequence[Union[os.PathLike, str]]] = None | ||
) -> None: ... | ||
def available_timezones() -> typing.Set[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.
Why not just Set
(without typing
) like in the other cases?
Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
There is one important thing I forgot. The class _Readable(Protocol):
def read(self, __size: int) -> bytes: ...
def seek(self, __size: int, __where: int) -> Any: ... Although I did not check all places where this was used. |
I like the idea of a specific protocol, but doesn't defining the minimal required subset of the I suppose a reasonable compromise would be to just add |
Yes, this is always the drawback of using specific protocols. In typeshed the decision was made (which I only partly agree with) to orient ourselves on the actual implementation. That said, if it is likely you will use The underlying problem is that the concept of "file-like" is underspecified in Python. Often it just means "has a read() method", although it can mean different things as well. (I actually plan to categorize often used IO protocols in the stdlib and have a set of "standard" protocols at some point. See also python/typing#564.) In this specific case, since you are the author of the PEP and the implementation, I'd say specify the protocol as you consider it useful. Unfortunately I hadn't read the PEP in depth. I like that you used type annotations in it, but I'd have counseled against using Edit: Also if you prefer to keep |
No worries. If you have a succinct replacement in the PEP (or if you'd prefer to add a footnote), we can still make little adjustments to the PEP here and there. I don't think it's amazingly likely that we'll use It seems that the |
Is typeshed/stdlib/2and3/__future__.pyi Line 22 in 1f7023b
(It does seem a bit silly given that the module won't even exist until 3.9, but as far as I know, there's no way to indicate that.) |
Good point, the import is not necessary, stubs always support forward references. |
This is the implementation for PEP 615: https://www.python.org/dev/peps/pep-0615/ It is present starting in 3.9.0 beta 1.
This is the implementation for PEP 615: https://www.python.org/dev/peps/pep-0615/
It is present starting in 3.9.0 beta 1.
Please let me know if you want these structured in a different way, or if you want me to try and migrate this smoke test module I use to test these things in the reference implementation.