summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test/test_libc.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/ctypes/test/test_libc.py')
-rw-r--r--Lib/ctypes/test/test_libc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_libc.py b/Lib/ctypes/test/test_libc.py
index 8fd2789..c39f350 100644
--- a/Lib/ctypes/test/test_libc.py
+++ b/Lib/ctypes/test/test_libc.py
@@ -4,7 +4,7 @@ import unittest
from ctypes import *
import _ctypes_test
-lib = cdll.load(_ctypes_test.__file__)
+lib = CDLL(_ctypes_test.__file__)
class LibTest(unittest.TestCase):
def test_sqrt(self):