Python documents state elsewhere that a comma is not an operator, so … (GH-98736)

…calling it an operator here is confusing. See https://docs.python.org/3/reference/lexical_analysis.html#operators and https://docs.python.org/3/faq/programming.html#id22.
This commit is contained in:
Gerardwx 2022-10-27 02:33:42 -04:00 committed by GitHub
parent 731909ebef
commit d578aaea62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ tuple may or may not yield the same object).
single: , (comma) single: , (comma)
Note that tuples are not formed by the parentheses, but rather by use of the Note that tuples are not formed by the parentheses, but rather by use of the
comma operator. The exception is the empty tuple, for which parentheses *are* comma. The exception is the empty tuple, for which parentheses *are*
required --- allowing unparenthesized "nothing" in expressions would cause required --- allowing unparenthesized "nothing" in expressions would cause
ambiguities and allow common typos to pass uncaught. ambiguities and allow common typos to pass uncaught.