Fix typo, expression output True and not [[...]]

This commit is contained in:
Valentin Samir 2017-10-03 16:50:39 +02:00
parent 6a1bbc9136
commit 6f66e1e065
1 changed files with 1 additions and 1 deletions

2
README.md vendored
View File

@ -1648,7 +1648,7 @@ a, b = a[b] = {}, 5
>>> some_list[0]
[[...]]
>>> some_list is some_list[0]
[[...]]
True
```
Similar is the case in our example (`a[b][0]` is the same object as `a`)