[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-26 Thread Steve Holden
I don't remember it being mentioned, but much of the traffic recently migrated from this list to https://discuss.python.org/c/core-dev/23, which you may wish to keep in touch with. Kind regards, Steve On Tue, Oct 25, 2022 at 7:53 AM Juan Cristóbal Quesada <

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-25 Thread Juan Cristóbal Quesada
Hi Steve, thanks! Will definitely have a look at it as soon as i can. Many thanks to all of you that replied. It was my first post in such python mailing lists and wasnt sure how accurate of a response i could have. You never know how active the mailing lists/forums are. Best Regards, JC

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-24 Thread Steve Dower
On 10/20/2022 1:07 PM, rainonthescarecrowhumanwhe...@gmail.com wrote: What happens is, when injecting into the sys.path the domain names it doesnt import but when injecting into the sys.path the "real" file server path it works, generally speaking. We have been facing this issue in such

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-22 Thread Juan Cristóbal Quesada
Thanks, yes, that was my last resort: inspecting the code through debugging the import system. Was hoping to get some light before that ;). ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-21 Thread Brett Cannon
On Fri, Oct 21, 2022 at 11:11 AM Juan Cristóbal Quesada < rainonthescarecrowhumanwhe...@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

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-21 Thread Juan Cristóbal Quesada
I guess my simplified question would be: ¿how does Python 3 versions manage Distributed File Systems and in particular Windows' DFS? Is it supported by the "import system" in Python? What differences are there? ___ Python-Dev mailing list --

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-21 Thread Juan Cristóbal Quesada
Hi, not sure about this neither. I was hoping someone with more experience deploying pythons and executing them over distributed file systems would shed a light why this happens. I'm sorry but to be honest i dont see the correlation between OpenSSL and DFS-R/DFS-N, maybe there is one but im a

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-21 Thread Brett Cannon
Import is implementing in Python itself via importlib, so you could try walking through the code with a debugger to see where the difference may be (I personally can't think of anything obvious that changed in importlib between 3.9 and 3.10 that would affect this). On Thu, Oct 20, 2022 at 11:36

[Python-Dev] Re: problem with Distributed File System Replication and Namespacing and different versions of Python 3

2022-10-20 Thread Lou King
Not sure if this is relevant, but I know they updated the openssl version in Python 3.10. I had the opposite problem trying to use Python 3.10 on CentOS 7 which has the old openSSL. I had to back off to 3.9. maybe running over the network invoked openSSL at some point and that's where the