2012/9/6 Timothy Baldridge <tbaldri...@gmail.com>:
> Let's imagine that I have some code like the following in RPython:
>
>
> def wrapper_func(arg1, arg2):
>     return inner_func(arg2)
>
> def inner_func(x):
>    for y in range(x):
>       # do something here
>       pass
>    return -1
>
> bigint = 1000000
>
> wrapper_func(list(range(bigint)), bigint)

Since that's all evaluated at import time, I don't see what the problem is.


-- 
Regards,
Benjamin
_______________________________________________
pypy-dev mailing list
pypy-dev@python.org
http://mail.python.org/mailman/listinfo/pypy-dev

Reply via email to