[Python-checkins] python/dist/src/Lib sets.py,1.15,1.16

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Fri, 23 Aug 2002 13:37:00 -0700


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

Modified Files:
	sets.py 
Log Message:
pop() docstring:  this isn't a randomly-chosen element, it's merely
arbitrary.  I already changed the docs for this.


Index: sets.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sets.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** sets.py	23 Aug 2002 20:06:42 -0000	1.15
--- sets.py	23 Aug 2002 20:36:58 -0000	1.16
***************
*** 456,460 ****
  
      def pop(self):
!         """Remove and return a randomly-chosen set element."""
          return self._data.popitem()[0]
  
--- 456,460 ----
  
      def pop(self):
!         """Remove and return an arbitrary set element."""
          return self._data.popitem()[0]