Skip to content

Commit

Permalink
[readme] about late binding
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Nov 14, 2023
1 parent ba84cb2 commit 03b7a81
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@ on the argument:
def late(o: _T | Iterator[_V] | Callable[[], _R]) -> _T | _V | _R:
```


### Late binding?

The definition of [Late Binding](https://en.wikipedia.org/wiki/Late_binding) that
**包 Late** uses is that of what is resolved at runtime instead of at compile time.

### Why doesn't the Python interpreter solve this?

Although the ugliness and inconvenience in the current situation have ben acknowledged
Expand Down

0 comments on commit 03b7a81

Please sign in to comment.