Skip to content

Commit f80070b

Browse files
committed
[EN-3260] -debug version
1 parent 1c8eb4d commit f80070b

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

build.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,12 @@ def download(self) -> str:
3939
print(f'Extracting to "{self.__path_to_extract}"')
4040
zipfile.extractall(self.__path_to_extract)
4141

42-
if __debug__:
43-
# noinspection PyUnreachableCode
44-
c_api_debug_suffix = 'd'
45-
else:
46-
c_api_debug_suffix = ''
47-
4842
if is_x64:
4943
c_api_x64_suffix = '_64'
5044
else:
5145
c_api_x64_suffix = ''
5246

53-
__c_api_library_name = f'DXFeed{c_api_debug_suffix}{c_api_x64_suffix}'
47+
__c_api_library_name = f'DXFeed{c_api_x64_suffix}'
5448

5549
if platform.system() == 'Windows':
5650
if is_x64:

0 commit comments

Comments
 (0)