Skip to content Skip to sidebar Skip to footer

Process Finished With Exit Code -107341571 (0xC00000FD)

I am getting Process finished with exit code -107341571 (0xC00000FD) With no stack trace, or any other indication of an error, in a rather large code-base. I can't create a repro

Solution 1:

For me, this happened with the following code in some class:

class A():
    @property
    def points_limits(self):
        return self.points_limits

Calling a.points_limits crashed Python.


This is an obvious name-clash, and I expected some compilation error in such cases, but apperantly this is not caught.


Answer :
don't call a property within itself - return a member variable instead, notice the leading underscore:

    @property
    def points_limits(self):
        return self._points_limits

Why there is nothing more indicative, or why Google doesn't find this is beyond me.

I am posting this to save countless hours for people by making this google-searchable.


Post a Comment for "Process Finished With Exit Code -107341571 (0xC00000FD)"