Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
6bf423df
Commit
6bf423df
authored
Mar 21, 2015
by
Paul Sokolovsky
Browse files
unix: Bump stack limit and adjust for 64-bitness.
Without that, "import http.client" failed due to max recursion.
parent
db80b654
Changes
1
Hide whitespace changes
Inline
Side-by-side
unix/main.c
View file @
6bf423df
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment