[Python-checkins] python/nondist/sandbox/sets set.py,1.8,1.9

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Mon, 19 Aug 2002 09:30:44 -0700


Update of /cvsroot/python/python/nondist/sandbox/sets
In directory usw-pr-cvs1:/tmp/cvs-serv25571

Modified Files:
	set.py 
Log Message:
Fix typo in __slots__ of ImmutableSet.

(Hopefully this is the last change to the sandbox; I'm concentrating
on the standard library version now.)


Index: set.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/sets/set.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** set.py	19 Aug 2002 16:13:31 -0000	1.8
--- set.py	19 Aug 2002 16:30:41 -0000	1.9
***************
*** 274,278 ****
      """Immutable set class."""
  
!     __slots__ = ['_hash']
  
      # BaseSet + hashing
--- 274,278 ----
      """Immutable set class."""
  
!     __slots__ = ['_hashcode']
  
      # BaseSet + hashing