Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
cf5e4481
Commit
cf5e4481
authored
Dec 06, 2011
by
Jelte Jansen
Browse files
[master] move down import sqlite3
parent
7a1997b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/xfrin/tests/xfrin_test.py
View file @
cf5e4481
...
...
@@ -17,7 +17,6 @@ import unittest
import
re
import
shutil
import
socket
import
sqlite3
import
sys
import
io
from
isc.testutils.tsigctx_mock
import
MockTSIGContext
...
...
@@ -25,6 +24,13 @@ from xfrin import *
import
xfrin
from
isc.xfrin.diff
import
Diff
import
isc.log
# If we use any python library that is basically a wrapper for
# a library we use as well (like sqlite3 in our datasources),
# we must make sure we import ours first; If we have special
# rpath or libtool rules to pick the correct version, python might
# choose the wrong one first, if those rules aren't hit first.
# This would result in missing symbols later.
import
sqlite3
#
# Commonly used (mostly constant) test parameters
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment