[Python-checkins] CVS: python/dist/src/Lib/test test_pwd.py,1.10,1.11

Eric S. Raymond esr@users.sourceforge.net
Fri, 09 Feb 2001 03:53:52 -0800


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

Modified Files:
	test_pwd.py 
Log Message:
String method conversion.
(This one was trivial -- no actual string. references in it!)


Index: test_pwd.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pwd.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** test_pwd.py	2001/01/17 21:51:35	1.10
--- test_pwd.py	2001/02/09 11:53:49	1.11
***************
*** 1,5 ****
  from test_support import verbose
  import pwd
- import string
  
  print 'pwd.getpwall()'
--- 1,4 ----
***************
*** 51,55 ****
              # should never happen... if so, just forget it
              break
!     fakename = string.join(map(None, chars), '')
  
  try:
--- 50,54 ----
              # should never happen... if so, just forget it
              break
!     fakename = ''.join(map(None, chars))
  
  try: