##// END OF EJS Templates
win32: use absolute_import
Gregory Szorc -
r25994:d6beeb61 default
parent child Browse files
Show More
@@ -5,7 +5,14 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 import ctypes, errno, msvcrt, os, subprocess, random
8 from __future__ import absolute_import
9
10 import ctypes
11 import errno
12 import msvcrt
13 import os
14 import random
15 import subprocess
9
16
10 _kernel32 = ctypes.windll.kernel32
17 _kernel32 = ctypes.windll.kernel32
11 _advapi32 = ctypes.windll.advapi32
18 _advapi32 = ctypes.windll.advapi32
General Comments 0
You need to be logged in to leave comments. Login now