What are you even comparing, this isnt software development.To a professional developer, the spiel above is -- and I say this in a tone of reluctant admiration -- stunningly full of shit.
Every software project has scope creep. Every single one. Every software project is incredibly complex compared to its apparent complexity, at least by a factor of 20; that size affects state space in a combinatorial fashion, as has been already mentioned. And since all projects trend toward increasing complexity over time, that complexity must be managed.
It is, to make things clear, a problem not remotely comparable to what you'd find in a toy example on YouTube.
That is what we as programmers do: we manage complexity. The problem with games is precisely that they entertain by offering complexity within a system of rules. In order for something to be a game, it requires state management of branching paths, and much like any other tool for writing Interactive Fiction, Ren'py does not have automation for ensuring the integrity of the state tree (whether in the narrative sense or not).
I know that because state-branch management is a Hard Problem. It's nontrivial to solve in the CompSci sense. Entire languages have been written to reduce given aspects of the combinatorial explosion. I have yet to see an indication that Ren'Py even bothers to do more than the bare minimum in that regard.
And testing, of course, is a full-time job by itself. I've been a [C#/C++/whatever's-needed] guy at <$day_job> for close to 10 years at this point. I still loathe product testing and doff my hat at anyone who takes on that work, because it's fucking gruelling, twice over when it's your own stuff you have to sit down and iterate on with a critical eye.
Debugging in here is simply running the game and watching if each new scene is what is supposed to be and toy around with events to see if there are incompatibilities, which you can debug by simply editing the code and force to changing vairables that shouldnt be more that simple boolean logic. After the opening of the game each character quite literally works in a vacuum only interacting with one or two other main plot characters that need to be in specific places.
And yet again you have here a barrage of VNs who upscale the complexity by a whole lot compared to WaL and dont take even close to the same amount of time to debug.