26 lines
655 B
Plaintext
26 lines
655 B
Plaintext
|
PEP: 218
|
|||
|
Title: Adding a Built-In Set Object Type
|
|||
|
Version: $Revision$
|
|||
|
Author: gvwilson@nevex.com (Greg Wilson)
|
|||
|
Python-Version: 2.1
|
|||
|
Status: Draft
|
|||
|
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:
|