Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

Brett Cannon <[email protected]> Fri, 21 Oct 2022 15:55:00 -0700
Newsgroups gmane.comp.python.devel
Message-ID <CAP1=2W4PJNehDWrX9-yOvTVV=N8fE-1_=P770d844LSmkKX-mg@mail.gmail.com>
On Fri, Oct 21, 2022 at 11:11 AM Juan Cristóbal Quesada <
[email protected]> wrote:

> I guess my simplified question would be:
>
> ¿how does Python 3 versions manage Distributed File Systems and in
> particular Windows' DFS?
>

In no specific way. We typically ask the OS to handle any file system
details.


>
> Is it supported by the "import system" in Python? What differences are
> there?
>

Not explicitly. Everything is done via file paths and things in the os
module (technically the posix or nt module depending on what OS you are
running on).

-Brett


> _______________________________________________
> Python-Dev mailing list -- [email protected]
> To unsubscribe send an email to [email protected]
> https://mail.python.org/mailman3/lists/python-dev.python.org/
> Message archived at
> https://mail.python.org/archives/list/[email protected]/message/HS7KIAFPOZQ7RQY6DNDBM2ILYQ5SI7EP/
> Code of Conduct: http://python.org/psf/codeofconduct/
>