On Sun, Jul 16 2023 at 03:58:07 PM, Peter Slížik wrote:
> Hello,
>
> I finally had a look at the pathlib module. (Should have done it long ago,
> but anyway...). Having in mind the replies from my older thread (File
> system path annotations), what is the best way to support all possible path
> ty
On 7/15/23 12:56, MRAB via Python-list wrote:
On 2023-07-15 07:12, YOUSEF EZZAT via Python-list wrote:
Hey!. i face a problem when i get setup packages by pip
when i code this : "pip install numpy" in my command line it gives me
error
"ModuleNotFoundError: No module named 'distutils'"
ple
Hello,
I finally had a look at the pathlib module. (Should have done it long ago,
but anyway...). Having in mind the replies from my older thread (File
system path annotations), what is the best way to support all possible path
types?
def doit(path: str | bytes | os.PathLike):
match path:
case st