[Python-checkins] python/dist/src/Lib sets.py,1.5,1.6

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Tue, 20 Aug 2002 16:34:03 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv5368

Modified Files:
	sets.py 
Log Message:
Minor typo

Index: sets.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sets.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** sets.py	20 Aug 2002 21:51:58 -0000	1.5
--- sets.py	20 Aug 2002 23:34:01 -0000	1.6
***************
*** 33,37 ****
  Only hashable objects can be added to a Set. In particular, you cannot
  really add a Set as an element to another Set; if you try, what is
! actuallly added is an ImmutableSet built from it (it compares equal to
  the one you tried adding).
  
--- 33,37 ----
  Only hashable objects can be added to a Set. In particular, you cannot
  really add a Set as an element to another Set; if you try, what is
! actually added is an ImmutableSet built from it (it compares equal to
  the one you tried adding).