Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1421a06

Browse files
committedJun 28, 2023
allow user to configure opt_handle_signals
1 parent e374e25 commit 1421a06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pysrc/juliacall/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def args_from_config():
129129
CONFIG['opt_sysimage'] = sysimg = path_option('sysimage', check_exists=True)[0]
130130
CONFIG['opt_threads'] = int_option('threads', accept_auto=True)[0]
131131
CONFIG['opt_warn_overwrite'] = choice('warn_overwrite', ['yes', 'no'])[0]
132-
CONFIG['opt_handle_signals'] = 'no'
132+
CONFIG["opt_handle_signals"] = choice('handle_signals', ['yes', 'no'], default='no')[0]
133133

134134
# Stop if we already initialised
135135
if CONFIG['inited']:

0 commit comments

Comments
 (0)