Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6358471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:22:50+00:00 2026-05-24T23:22:50+00:00

I have one question about sys.setrecursionlimit() From the python docs this function: Set the

  • 0

I have one question about sys.setrecursionlimit()

From the python docs this function:
Set the maximum depth of the Python interpreter stack to limit. This limit prevents infinite recursion from causing an overflow of the C stack and crashing Python.
The highest possible limit is platform-dependent. A user may need to set the limit higher when she has a program that requires deep recursion and a platform that supports a higher limit. This should be done with care because a too-high limit can lead to a crash.

Here is my question:

Let’s take this useless recursive function:

def rec(N):
     if N==0:
         return 1
     else:
         return rec(N-1);

Now let’s set the max recursion to 100:

sys.setrecursionlimit(100)

If I try rec(99) (100 recursive calls), I get:

RuntimeError: maximum recursion depth exceeded

To calculate rec(99) I need to set recursion limit to 105.

Why is this so?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T23:22:53+00:00Added an answer on May 24, 2026 at 11:22 pm

    It’s poorly named. It should say Stack Depth, not Recursion depth. Recursion implies it’s the same thread over and over again that it’s limiting. In reality, you could have actual code that just has calls 100 deep. I wouldn’t recommend it, but you could. They can get away with it because in the practical world, the only times you ever run into this scenario is with recursion. When you crash because of this, seeing the word “Recursion” gives you an immediate clue of what to look for as opposed to “Stack”.

    (Stack should give any decent programmer the same clue, but let’s be honest, your code just crashed and you want a relevant error message, right? 99.99999% of the time this tells you exactly what you messed up (you missed your base case for recursion.))

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have one question. I ready many pages about best thereading like this http://www.albahari.com/threading/part4.aspx
I have one question, I have such code this._engine = Python.CreateEngine(); ScriptSource source =
I have a question about best practices regarding how one should approach storing complex
I have two String.printable mysteries in the one question. First, in Python 2.6: >>>
Background This question is in two parts. I have a one-way WCF operation hosted
I have a simple question related to one-line programming. First an example: function test(a)
I have a similar question to this one SQL products/productsales I want to do
I have a quick question about fetching results from a weakly typed cursor and
I'm following a tutorial. (Real World Haskell) And I have one beginner question about
I've just read tutorial about enums and have one question. I've studied example: public

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.