============= Other Objects ============= Data Types ==== `frozenset`_ Unordered list of unique objects. Immutable. `bytearray`_ Sequence of integers in the range between 0 and 255. Mutable. `memoryview`_ View of the object's raw byte data. Method Decorators ==== `classmethod`_ Method that takes class as its first arguments (instead of a class instance). `staticmethod`_ Method that explicitly does not take the class instance as its first argument. `property`_ Allows for proper use of getter, setter and deleter methods in Python. Others ==== `function`_ A function object. `generator`_ A generator function object. `code`_ Compiled Python code. `slice`_ Slice objects. .. _frozenset: docs/sets/index.html .. _bytearray: docs/bytearray/index.html .. _memoryview: docs/memoryview/index.html .. _function: docs/function/index.html .. _generator: docs/generator/index.html .. _code: docs/code/index.html .. _slice: docs/slice/index.html .. _classmethod: docs/classmethod/index.html .. _staticmethod: docs/staticmethod/index.html .. _property: docs/property/index.html