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