[Python-checkins] CVS: python/dist/src/Lib/test test_long.py,1.11,1.12 test_pow.py,1.12,1.13 test_urllib2.py,1.4,1.5

Tim Peters tim_one@users.sourceforge.net
Mon, 03 Sep 2001 23:37:30 -0700


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

Modified Files:
	test_long.py test_pow.py test_urllib2.py 
Log Message:
Whitespace normalization.


Index: test_long.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_long.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** test_long.py	2001/09/04 05:14:18	1.11
--- test_long.py	2001/09/04 06:37:28	1.12
***************
*** 358,362 ****
                   "math.log10(huge)", "math.log10(mhuge)", # should do better
                   "math.floor(huge)", "math.floor(mhuge)"]:
!                  
          try:
              eval(test, namespace)
--- 358,362 ----
                   "math.log10(huge)", "math.log10(mhuge)", # should do better
                   "math.floor(huge)", "math.floor(mhuge)"]:
! 
          try:
              eval(test, namespace)

Index: test_pow.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pow.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** test_pow.py	2001/09/03 08:44:02	1.12
--- test_pow.py	2001/09/04 06:37:28	1.13
***************
*** 119,121 ****
                  n = pow(long(i),j,k)
                  if o != n: print 'Integer mismatch:', i,j,k
- 
--- 119,120 ----

Index: test_urllib2.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_urllib2.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** test_urllib2.py	2001/08/27 22:31:58	1.4
--- test_urllib2.py	2001/09/04 06:37:28	1.5
***************
*** 19,23 ****
  # urllib.pathname2url works, unfortunately...
  if os.name == 'mac':
! 	fname = '/' + fname.replace(':', '/')
  file_url = "file://%s" % fname
  f = urllib2.urlopen(file_url)
--- 19,23 ----
  # urllib.pathname2url works, unfortunately...
  if os.name == 'mac':
!     fname = '/' + fname.replace(':', '/')
  file_url = "file://%s" % fname
  f = urllib2.urlopen(file_url)