[Python-checkins] python/dist/src/Lib sets.py,1.1,1.2

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


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

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


Index: sets.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sets.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** sets.py	19 Aug 2002 16:19:13 -0000	1.1
--- sets.py	19 Aug 2002 16:29:58 -0000	1.2
***************
*** 274,278 ****
      """Immutable set class."""
  
!     __slots__ = ['_hash']
  
      # BaseSet + hashing
--- 274,278 ----
      """Immutable set class."""
  
!     __slots__ = ['_hashcode']
  
      # BaseSet + hashing