@@ -1319,7 +1319,7 @@ There are several ways to load shared libraries into the Python process. One
1319
1319
way is to instantiate one of the following classes:
1320
1320
1321
1321
1322
- .. class :: CDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmode=0 )
1322
+ .. class :: CDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmode=None )
1323
1323
1324
1324
Instances of this class represent loaded shared libraries. Functions in these
1325
1325
libraries use the standard C calling convention, and are assumed to return
@@ -1341,7 +1341,7 @@ way is to instantiate one of the following classes:
1341
1341
-- A tool to find DLL dependents.
1342
1342
1343
1343
1344
- .. class :: OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmode=0 )
1344
+ .. class :: OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmode=None )
1345
1345
1346
1346
Windows only: Instances of this class represent loaded shared libraries,
1347
1347
functions in these libraries use the ``stdcall `` calling convention, and are
@@ -1354,7 +1354,7 @@ way is to instantiate one of the following classes:
1354
1354
:exc: `WindowsError ` used to be raised.
1355
1355
1356
1356
1357
- .. class :: WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmode=0 )
1357
+ .. class :: WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winmode=None )
1358
1358
1359
1359
Windows only: Instances of this class represent loaded shared libraries,
1360
1360
functions in these libraries use the ``stdcall `` calling convention, and are
0 commit comments