On 28/08/2019 02:38, [email protected] wrote:
Thanks, Andrew, you're able to explain this much better than I do. Just wanted to add that Python*already* has ways to grossly abuse its syntax and create unreadable code. For example, I can write>>> о = 3 >>> o = 5 >>> ο = 6 >>> (о, o, ο) (3, 5, 6)
OK, I'll bite: how? If you were using "thing.o" I would believe you were doing something unhelpful with properties, but just "o"?
-- Rhodri James *-* Kynesim Ltd _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/VMYYPWSXOPZ6KOKOY4W5K3VCOWVQFZKY/ Code of Conduct: http://python.org/psf/codeofconduct/
