
May 24, 2021
10:33 p.m.
Reply to Steve D'Aprano - I am talking about constant name binding. Once the name is bind it cannot be changed. The data will remain immutable or mutable.
That seems very odd. That would mean that you can't pass constants to functions, or put them in lists or dicts, since that would create new references to the object.
Well I thought about constant name binding with freeze protocol but it didn't seem to be Pythonic. So I changed my initial idea to have constant name binding. Now we can create multiple references.