We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Comparison Table 2-3 is missing the following array.array class methods:
s.buffer_info() s.fromunicode(d) s.tounicode()
Tested in Python 3.11.4:
>>> from array import array >>> dir(list) ['__add__', '__class__', '__class_getitem__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] >>> dir(array) ['__add__', '__class__', '__contains__', '__copy__', '__deepcopy__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__module__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmul__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'buffer_info', 'byteswap', 'count', 'extend', 'frombytes', 'fromfile', 'fromlist', 'fromunicode', 'index', 'insert', 'itemsize', 'pop', 'remove', 'reverse', 'tobytes', 'tofile', 'tolist', 'tounicode', 'typecode']
In the attached report, missing methods are highlighted in red.
Comparing list and array.array features.pdf
https://github.com/timofey-ivashchenko/fluent-python/blob/chapter-02/02.%20An%20Array%20of%20Sequences/Essentials/Comparing%20list%20and%20array.array%20features.pdf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Comparison Table 2-3 is missing the following array.array class methods:
Tested in Python 3.11.4:
In the attached report, missing methods are highlighted in red.
Comparing list and array.array features.pdf
https://github.com/timofey-ivashchenko/fluent-python/blob/chapter-02/02.%20An%20Array%20of%20Sequences/Essentials/Comparing%20list%20and%20array.array%20features.pdf
The text was updated successfully, but these errors were encountered: