1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-20 22:50:26 +03:00

dns.py: Use the python socket module.

We preload socket_wrapper, no need to use the special module.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Andreas Schneider 2013-07-05 12:07:49 +02:00 committed by Stefan Metzmacher
parent 0ed826d508
commit d1ee35dc36

View File

@ -18,7 +18,7 @@
import os
import struct
import random
from samba import socket
import socket
import samba.ndr as ndr
import samba.dcerpc.dns as dns
from samba.tests import TestCase