Skip to content

Commit

Permalink
documented #54 in code
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Sep 22, 2019
1 parent 74ec32a commit 2b77dd3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/zugbruecke/core/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ def _check_HRESULT(result): # EXPORT
# Wrapper for CDLL class
def CDLL(
self,
name, mode = DEFAULT_MODE, handle = None,
name, mode = DEFAULT_MODE,
handle = None, # TODO ignored, see #54
use_errno = False,
use_last_error = False
):
Expand All @@ -207,7 +208,8 @@ def CDLL(
# Wrapper for WinDLL class
def WinDLL(
self,
name, mode = DEFAULT_MODE, handle = None,
name, mode = DEFAULT_MODE,
handle = None, # TODO ignored, see #54
use_errno = False,
use_last_error = False
):
Expand All @@ -222,7 +224,8 @@ def WinDLL(
# Wrapper for OleDLL class
def OleDLL(
self,
name, mode = DEFAULT_MODE, handle = None,
name, mode = DEFAULT_MODE,
handle = None, # TODO ignored, see #54
use_errno = False,
use_last_error = False
):
Expand Down

0 comments on commit 2b77dd3

Please sign in to comment.