mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
bpo-36085: Add additional load flag to ensure DLL loads successfully (GH-12633)
This commit is contained in:
parent
e724152796
commit
ac19d96527
1 changed files with 2 additions and 1 deletions
|
@ -167,7 +167,8 @@ class LoaderTest(unittest.TestCase):
|
|||
|
||||
# Full path load with DLL_LOAD_DIR should succeed
|
||||
should_pass("WinDLL(nt._getfullpathname('_sqlite3.dll'), " +
|
||||
"winmode=nt._LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR)")
|
||||
"winmode=nt._LOAD_LIBRARY_SEARCH_SYSTEM32|" +
|
||||
"nt._LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR)")
|
||||
|
||||
# User-specified directory should succeed
|
||||
should_pass("import os; p = os.add_dll_directory(os.getcwd());" +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue