09.04.21 12:50, Matt del Valle пише: > I think sets are the only type in the builtins module > without a dedicated literal syntax?
Not only. bytearray, frozenset, slice. It is difficult to create some complex objects without using constructor. Not counting range, memoryview and dict views, descriptors (staticmethod, classmethod, property), exceptions, iterators (filter, map, zip, enumerate, reversed and numerous collection iterators). All these types are defined in the builtins module. _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/LS43IAFFLNCCVVLF6WXMXOYZFOSNOHRL/ Code of Conduct: http://python.org/psf/codeofconduct/
