DEV Community

Discussion on: Dead Simple Python: Lambdas, Decorators, and Other Magic

Collapse
 
sandordargo profile image
Sandor Dargo

Very useful article.

Regarding the default depth, it's interesting. Here and there I read 997, then I went to see the CPython implementation, there it's set to 1000.

Well, it doesn't change a lot of things. But probably it's worth mentioning that you actually change that limit, by using sys.setrecursionlimit.

Collapse
 
codemouse92 profile image
Jason C. McDonald

Great insight, thanks!