Copyedit PEP 505 (one bit I missed in the first pass)
This commit is contained in:
parent
f960623a1e
commit
89ebf86c06
|
@ -130,9 +130,11 @@ chaining::
|
|||
'My Title'
|
||||
|
||||
The direction of associativity is important because the ``None`` coalesing
|
||||
operator short circuits: if it's left operand is non-null, then the right
|
||||
operator short circuits: if its left operand is non-null, then the right
|
||||
operand is not evaluated.
|
||||
|
||||
::
|
||||
|
||||
>>> def get_default(): raise Exception()
|
||||
>>> 'My Title' ?? get_default()
|
||||
'My Title'
|
||||
|
|
Loading…
Reference in New Issue