-
-
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
Improve accuracy of six
byte index methods
#9117
Merged
+41
−20
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
45c2402
Improve accuracy of `six` byte index methods
Avasam a8c330a
Use SupportsGetItem
Avasam 5ac3686
Fix failing stubtest
Avasam 9991a0b
Fix? SupportsGetItem __contains__
Avasam 444b616
Use Any as SupportsGetItem _VT_co
Avasam 6c9f88c
byte2int as method
Avasam b438335
Added back to allowlist
Avasam e6d848a
Merge branch 'main' into six-buffer-index
Avasam f6cd9b4
Merge branch 'main' of https://github.com/python/typeshed into six-bu…
Avasam 70b2067
Updated comments.
Avasam f7c9c8f
swap getitem overload order
Avasam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import builtins | ||
import operator | ||
import types | ||
import unittest | ||
from _typeshed import IdentityFunction | ||
|
@@ -63,9 +64,11 @@ def u(s: str) -> str: ... | |
unichr = chr | ||
|
||
def int2byte(i: int) -> bytes: ... | ||
def byte2int(bs: bytes) -> int: ... | ||
def indexbytes(buf: bytes, i: int) -> int: ... | ||
def iterbytes(buf: bytes) -> _Iterator[int]: ... | ||
|
||
byte2int = operator.itemgetter(0) | ||
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. That's not legal in a stub. 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. oops, didn't catch that. I accidentally ran the tests locally with |
||
indexbytes = operator.getitem | ||
iterbytes = iter | ||
|
||
def assertCountEqual(self: unittest.TestCase, first: Iterable[_T], second: Iterable[_T], msg: str | None = ...) -> None: ... | ||
@overload | ||
def assertRaisesRegex(self: unittest.TestCase, msg: str | None = ...) -> Any: ... | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Could you use
_typeshed.SupportsGetItem
instead?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.
I cannot as-is, because
SupportsGetItem
defines__contains__
, AND it is defined asdef __contains__(self, __x: object) -> bool: ...
.Not all indexable types (including buffer-like ones) define
__contains__
*bytes defines it as
def __contains__(self, __o: SupportsIndex | bytes) -> bool: ...
, and I am uncertain of the change required to make it work. (other than just typing the parameter__x
asAny
).* On that note,
mmap
missing__contains__
seems to be a mistake:I've done what I think are the necessary changes.