python-peps/pep-0218.txt

27 lines
677 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PEP: 218
Title: Adding a Built-In Set Object Type
Version: $Revision$
Author: gvwilson@nevex.com (Greg Wilson)
Status: Draft
Type: Standards Track
Python-Version: 2.1
Created: 31-Jul-2000
Post-History:
Abstract
Sets are a fundamental mathematical structure, and are commonly
used to both specify and implement programs. Sets are often
implemented as dictionaries with "don't care" values, but this
leaves the meaning of intersection, union, difference, and other
basic operations are ambiguous. This PEP therefore proposes
syntax and semantics for a concrete, built-in set type.
Local Variables:
mode: indented-text
indent-tabs-mode: nil
End: