Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -2308,8 +2308,14 @@ these operators.
#### Membership tests

```text
any in sequence (list, tuple, dict, set, string, bytes, range)
any not in sequence
any in sequence (list, tuple, dict, set, range)
any not in sequence
string in string
string not in string
bytes in bytes
int in bytes
bytes not in bytes
int not in bytes
```

The `in` operator reports whether its first operand is a member of its
Expand Down