diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-06-15 22:12:23 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-06-15 22:12:23 (GMT) |
commit | 04b9d47941527503fdc0c57672394529edf13e0d (patch) | |
tree | 27413ef406be97f210cbbaee55ac7f22dc33f877 | |
parent | 080da28bdbaf36677bf6a429f44d8f3a8eb44bf6 (diff) | |
download | cpython-04b9d47941527503fdc0c57672394529edf13e0d.zip cpython-04b9d47941527503fdc0c57672394529edf13e0d.tar.gz cpython-04b9d47941527503fdc0c57672394529edf13e0d.tar.bz2 |
choose_boundary(): This no longer uses random, so stop importing it.
-rw-r--r-- | Lib/mimetools.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/mimetools.py b/Lib/mimetools.py index 67623ec..067a2cd 100644 --- a/Lib/mimetools.py +++ b/Lib/mimetools.py @@ -125,7 +125,6 @@ def choose_boundary(): global _prefix import time - import random if _prefix is None: import socket hostid = socket.gethostbyname(socket.gethostname()) |