This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients blarsen, gvanrossum, pablogsal
Date 2020-09-03.05:16:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
Smaller repro:

./python.exe -m configparser

Bisection shows that this is the call that causes the crash (line 1301):

        return _impl(self._name, option, raw=raw, vars=vars,
                     fallback=fallback, **kwargs)

But just that line doesn't trigger this -- apparently *everything* that came before it in that file is implicated. Or at least *something* that I haven't found yet.

Sorry for the play-by-play...
History
Date User Action Args
2020-09-03 05:16:19gvanrossumsetrecipients: + gvanrossum, blarsen, pablogsal
2020-09-03 05:16:19gvanrossumsetmessageid: <[email protected]>
2020-09-03 05:16:19gvanrossumlinkissue41697 messages
2020-09-03 05:16:19gvanrossumcreate