summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/confusing-with-statement/good.py
blob: bcedaafa6f1c60654fa1db5a1a5a476de52e6418 (plain)
1
2
3
with open("file.txt", "w", encoding="utf8") as fh1:
    with open("file.txt", "w", encoding="utf8") as fh2:
        pass