[Python-checkins] cpython: Improve readability

raymond.hettinger python-checkins at python.org
Mon May 19 21:21:56 CEST 2014


http://hg.python.org/cpython/rev/50fcb18be8ab
changeset:   90767:50fcb18be8ab
user:        Raymond Hettinger <python at rcn.com>
date:        Mon May 19 20:21:43 2014 +0100
summary:
  Improve readability

files:
  Lib/random.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/random.py b/Lib/random.py
--- a/Lib/random.py
+++ b/Lib/random.py
@@ -684,7 +684,7 @@
     print(round(t1-t0, 3), 'sec,', end=' ')
     avg = total/n
     stddev = _sqrt(sqsum/n - avg*avg)
-    print('avg %g, stddev %g, min %g, max %g' % \
+    print('avg %g, stddev %g, min %g, max %g\n' % \
               (avg, stddev, smallest, largest))
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list