This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author twinkim2
Recipients twinkim2
Date 2018-02-01.01:58:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1517450286.23.0.467229070634.issue32738@psf.upfronthosting.co.za>
In-reply-to
Content
I just try to import ./so created by c language.
However , if some c function library is added in c souce code such as "fopen" and "sscanf" related with stdio , runtime error is happend like as below.
==================================================================
Traceback (most recent call last):  File "D:\python_test\c_library_test.py", line 8, in <module>
    adder = CDLL('./_adder.so')
  File "C:\Users\admin\AppData\Local\Programs\Python\Python36\lib\ctypes\__init__.py", line 348, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] can't fine Module.
===================================================================
Please give your guide to fix this issue.
History
Date User Action Args
2018-02-01 01:58:06twinkim2setrecipients: + twinkim2
2018-02-01 01:58:06twinkim2setmessageid: <1517450286.23.0.467229070634.issue32738@psf.upfronthosting.co.za>
2018-02-01 01:58:06twinkim2linkissue32738 messages
2018-02-01 01:58:04twinkim2create