tests: update sitecustomize to use uuid1() instead of randrange()
authorAugie Fackler <augie@google.com>
Mon, 21 Nov 2016 17:51:39 -0500
changeset 30477 d2c40510104e
parent 30476 8a9681b963a3
child 30478 f7d66746ec18
tests: update sitecustomize to use uuid1() instead of randrange() The comments mention that uuid would be better, so let's go ahead and make good on an old idea.
tests/sitecustomize.py
--- a/tests/sitecustomize.py	Mon Nov 21 17:48:13 2016 -0500
+++ b/tests/sitecustomize.py	Mon Nov 21 17:51:39 2016 -0500
@@ -4,11 +4,10 @@
 if os.environ.get('COVERAGE_PROCESS_START'):
     try:
         import coverage
-        import random
+        import uuid
 
-        # uuid is better, but not available in Python 2.4.
         covpath = os.path.join(os.environ['COVERAGE_DIR'],
-                               'cov.%s' % random.randrange(0, 1000000000000))
+                               'cov.%s' % uuid.uuid1())
         cov = coverage.coverage(data_file=covpath, auto_data=True)
         cov._warn_no_data = False
         cov._warn_unimported_source = False