summaryrefslogtreecommitdiffstats
path: root/Lib/sets.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/sets.py')
-rw-r--r--Lib/sets.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/sets.py b/Lib/sets.py
index bb44280..eeef0e8 100644
--- a/Lib/sets.py
+++ b/Lib/sets.py
@@ -133,7 +133,9 @@ class BaseSet(object):
def copy(self):
"""Return a shallow copy of a set."""
- return self.__class__(self)
+ result = self.__class__([])
+ result._data.update(self._data)
+ return result
__copy__ = copy # For the copy module