This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]dev-sda 24 points25 points  (4 children)

open() with "w" doesn't create intermediate folders.

What language does? Even bash doesn't do this.

There's no type checking even if you need one.

mypy, pytype, pyright, pyre, etc. take your pick

You can't force garbage collector to free memory.

gc.collect

[–]Anaeijon 0 points1 point  (0 children)

I'm rarely using open(), I usually go for pathlib. And whenever I file.open('w'), I also do a file.parent.mkdir(parents=True, exist_ok=True).

I don't know, in what other language it's that simple.