BIND 10 master, updated. cf5e4481b1f1fb00e9897e4cd0527a9a707c4a63 [master] move down import sqlite3
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Dec 6 08:11:16 UTC 2011
The branch, master has been updated
via cf5e4481b1f1fb00e9897e4cd0527a9a707c4a63 (commit)
from 7a1997b2d44d05c179adecad0bf68c1f7c19935f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit cf5e4481b1f1fb00e9897e4cd0527a9a707c4a63
Author: Jelte Jansen <jelte at isc.org>
Date: Tue Dec 6 09:11:03 2011 +0100
[master] move down import sqlite3
-----------------------------------------------------------------------
Summary of changes:
src/bin/xfrin/tests/xfrin_test.py | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/xfrin/tests/xfrin_test.py b/src/bin/xfrin/tests/xfrin_test.py
index 3c41110..00e42be 100644
--- a/src/bin/xfrin/tests/xfrin_test.py
+++ b/src/bin/xfrin/tests/xfrin_test.py
@@ -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
More information about the bind10-changes
mailing list