We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c8eb4d commit f80070bCopy full SHA for f80070b
build.py
@@ -39,18 +39,12 @@ def download(self) -> str:
39
print(f'Extracting to "{self.__path_to_extract}"')
40
zipfile.extractall(self.__path_to_extract)
41
42
- if __debug__:
43
- # noinspection PyUnreachableCode
44
- c_api_debug_suffix = 'd'
45
- else:
46
- c_api_debug_suffix = ''
47
-
48
if is_x64:
49
c_api_x64_suffix = '_64'
50
else:
51
c_api_x64_suffix = ''
52
53
- __c_api_library_name = f'DXFeed{c_api_debug_suffix}{c_api_x64_suffix}'
+ __c_api_library_name = f'DXFeed{c_api_x64_suffix}'
54
55
if platform.system() == 'Windows':
56
0 commit comments