Skip to content

Commit 9de8961

Browse files
committed
Add forgotten operator
1 parent 15bf260 commit 9de8961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/reference/lexical_analysis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,7 @@ is also available in the :mod:`!token` module documentation.
13811381
| "..."
13821382
13831383
arithmetic_operator: "+" | "-" | "*" | "**" | "/" | "//" | "%"
1384-
bitwise_operator: "&" | "^" | "~" | "<<" | ">>"
1384+
bitwise_operator: "&" | "|" | "^" | "~" | "<<" | ">>"
13851385
assignment_operator: "+=" | "-=" | "*=" | "**=" | "/=" | "//=" | "%=" |
13861386
"&=" | "|=" | "^=" | "<<=" | ">>=" | "@=" | ":="
13871387
comparison_operator: "<" | ">" | "<=" | ">=" | "==" | "!="

0 commit comments

Comments
 (0)