On Thu, Nov 26, 2020 at 5:43 AM <3mir33@gmail.com> wrote:
Add something like Move type hint to typing module. It will tell the analyzer that the input parameter of the function is moved and can not be used after. For example:
```

You say "moved and cannot be used" which is either incomplete, ambiguous, contradictory, or some combination of those. Moved where and who can't use it? What you really are talking about is "taking ownership." But then you're omitting the key detail that it also gives ownership back via the return value. Otherwise what you would want to indicate is that the function destroys the value.

Since the semantics of Python are that objects are always passed by reference, it's implied that control of the object is passed to the called function. I think 

What might be useful are declarations that:
--- Bruce