unix: Bump stack limit and adjust for 64-bitness.
Without that, "import http.client" failed due to max recursion.
This commit is contained in:
parent
db80b65402
commit
6bf423df2c
|
@ -303,7 +303,7 @@ STATIC void set_sys_argv(char *argv[], int argc, int start_arg) {
|
|||
int main(int argc, char **argv) {
|
||||
prompt_read_history();
|
||||
|
||||
mp_stack_set_limit(32768);
|
||||
mp_stack_set_limit(40000 * (BYTES_PER_WORD / 4));
|
||||
|
||||
pre_process_options(argc, argv);
|
||||
|
||||
|
|
Loading…
Reference in New Issue