from utils import args does not refer to a standard python feature, nor any common library I can find. I do not think it has changed between versions, I think you have forgotten where you got it from, and it would be missing in a clean stretch install too. Is it also very generically named for a published module; are you sure it is not something you wrote yourself?
Even if there were some feature that was removed or changed interface between 3.5 and 3.9, that would be such a bad design that you would have to completely avoid it.
I suggest you approach the problem from the opposite directory. What does your script do with args after it imports it, and what is the best way to do that thing in python, so it works in all versions and does not require a non-standard library?
Even if there were some feature that was removed or changed interface between 3.5 and 3.9, that would be such a bad design that you would have to completely avoid it.
I suggest you approach the problem from the opposite directory. What does your script do with args after it imports it, and what is the best way to do that thing in python, so it works in all versions and does not require a non-standard library?
Statistics: Posted by jojopi — Sun Apr 13, 2025 10:49 pm