-
Notifications
You must be signed in to change notification settings - Fork 1.3k
add bytes missing method #736
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
Comments
I start with __add__, __contains__, __getitem__ |
I made your list into checkboxes, so you can check each one off as you do it. Thanks for helping with this! |
thinking about it I think we should implement first the buffer protocol https://docs.python.org/3.7/glossary.html#term-bytes-like-object and then write bytes, memoryview and bytearray in top of that. |
That sounds good. Would you do it with a trait á la #765? |
Yes thats the idea
Le 31 mars 2019 à 04:11, à 04:11, coolreader18 <notifications@github.com> a écrit:
…That sounds good. Would you do it with a trait á la #765?
--
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub:
#736 (comment)
|
for |
Current status, only these are missing
|
|
This is practically done 🙌 . |
Uh oh!
There was an error while loading. Please reload this page.
A thread to add missing bytes method :
I'll try to keep it up to date
bytes . __add__
bytes . __contains__
bytes . __getitem__
bytes . __getnewargs__
bytes . __init_subclass__
bytes . __mod__
bytes . __mul__
bytes . __reduce__
bytes . __reduce_ex__
bytes . __rmod__
bytes . __rmul__
bytes . __sizeof__
bytes . __subclasshook__
bytes . capitalize
bytes . center
bytes . count
bytes . decode
bytes . endswith
bytes . expandtabs
bytes . find
bytes . fromhex
bytes . hex
bytes . index
bytes . isalnum
bytes . isalpha
bytes . isascii
bytes . isdigit
bytes . islower
bytes . isspace
bytes . istitle
bytes . isupper
bytes . join
bytes . ljust
bytes . lower
bytes . lstrip
bytes . maketrans
bytes . partition
bytes . replace
bytes . rfind
bytes . rindex
bytes . rjust
bytes . rpartition
bytes . rsplit
bytes . rstrip
bytes . split
bytes . splitlines
bytes . startswith
bytes . strip
bytes . swapcase
bytes . title
bytes . translate
bytes . upper
bytes . zfill
The text was updated successfully, but these errors were encountered: