[svn] commit: r1297 - /trunk/src/bin/bind10/bind10.py.in
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Mar 10 20:26:47 UTC 2010
Author: shane
Date: Wed Mar 10 20:26:47 2010
New Revision: 1297
Log:
Remove unnecessary "import isc", plus a bit of cleanup on import
statements in general.
Modified:
trunk/src/bin/bind10/bind10.py.in
Modified: trunk/src/bin/bind10/bind10.py.in
==============================================================================
--- trunk/src/bin/bind10/bind10.py.in (original)
+++ trunk/src/bin/bind10/bind10.py.in Wed Mar 10 20:26:47 2010
@@ -1,9 +1,4 @@
#!@PYTHON@
-
-import sys; sys.path.append ('@@PYTHONPATH@@')
-import os
-import time
-import random
"""\
This file implements the Boss of Bind (BoB, or bob) program.
@@ -25,6 +20,9 @@
signal handling outside of that class, in the code running for
__main__.
"""
+
+import sys; sys.path.append ('@@PYTHONPATH@@')
+import os
# If B10_FROM_SOURCE is set in the environment, we use data files
# from a directory relative to that, otherwise we use the ones
@@ -40,19 +38,18 @@
import subprocess
import signal
-import os
import re
import errno
import time
import select
import pprint
+import random
from optparse import OptionParser, OptionValueError
import isc.cc
-import isc
# This is the version that gets displayed to the user.
-__version__ = "v20100309"
+__version__ = "v20100310"
# Nothing at all to do with the 1990-12-10 article here:
# http://www.subgenius.com/subg-digest/v2/0056.html
More information about the bind10-changes
mailing list