5 ms·
If you're really determined, you can use `.` as an operator via __getattr__ and inspect :p
by valtron 13y ago
If you're really determined, you can use `.` as an operator via __getattr__ and inspect :p
- shoo 13y agough. very loosely related, this reminds me of calling R functions from python that take keyword arguments with dots in their names. >>> f(hello.world=123) File "<stdin>", line 1 SyntaxError: keyword can't be an expression so instead: >>> f(**{'hello.world':123})