
On Fri, Oct 21, 2022 at 11:11 AM Juan Cristóbal Quesada < rainonthescarecrowhumanwheels@gmail.com> 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 -- python-dev@python.org To unsubscribe send an email to python-dev-leave@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/HS7KIAFP... Code of Conduct: http://python.org/psf/codeofconduct/