unix: Bump stack limit and adjust for 64-bitness.

Without that, "import http.client" failed due to max recursion.
stackless
Paul Sokolovsky 2015-03-21 02:13:13 +02:00
parent db80b65402
commit 6bf423df2c
1 changed files with 1 additions and 1 deletions

View File

@ -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);