# HG changeset patch # User Paul Boddie # Date 1342302583 -7200 # Node ID 2ee8f1875f2c75a46ebf494255ea514f8128e2ce # Parent 53e9af95f2a2840ac5aa66b4209cec0276232813 Added various set methods. diff -r 53e9af95f2a2 -r 2ee8f1875f2c lib/builtins.py --- a/lib/builtins.py Sat Jul 14 23:39:04 2012 +0200 +++ b/lib/builtins.py Sat Jul 14 23:49:43 2012 +0200 @@ -392,6 +392,22 @@ class set(object): def __init__(self, iterable): pass + def add(self, item): pass + def clear(self): pass + def copy(self): pass + def difference(self, other): pass + def difference_update(self, other): pass + def discard(self, item): pass + def intersection(self, other): pass + def intersection_update(self, other): pass + def issubset(self, other): pass + def issuperset(self, other): pass + def pop(self): pass + def remove(self, item): pass + def symmetric_difference(self, other): pass + def symmetric_difference_update(self, other): pass + def union(self, other): pass + def update(self, other): pass # See below for slice.