Re: A switch somewhere, or bug? CORRECTION

Chris Angelico via Python-list <[email protected]> Sat, 6 Dec 2025 12:36:14 +1100
Newsgroups gmane.comp.python.general
Message-ID <CAPTjJmpVCGeX51ZVweQ_a5Pvid+hEAtudzemO+F8fjieP4ZH2g@mail.gmail.com>
On Sat, 6 Dec 2025 at 12:33, Michael Torrie via Python-list
<[email protected]> wrote:
> Starter = open("HLYlog.txt","w");
> filepath = Starter.name

Isn't that just...

filepath = "HLYlog.txt"

?

ChrisA