Copyedit PEP 505 (one bit I missed in the first pass)

This commit is contained in:
Chris Angelico 2015-09-19 12:20:26 +10:00
parent f960623a1e
commit 89ebf86c06
1 changed files with 3 additions and 1 deletions

View File

@ -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'