I came across the following syntax in some Python3 code I found online:
Note: this is actually from Vyper, a subset of Python3 used for programming on Ethereum. The developers of Vyper claim that all Vyper code is valid Python3 syntax (although the converse is not true)
myvariable: somefunction(someglobalvariable)
I haven't been able to uncover the specific documentation from Python3 explaining the meaning of this syntax.
What does this do?