PEP 690: Fix omission of `-L` in example (#2582)

This commit is contained in:
Itamar Ostricher 2022-05-21 13:04:08 -07:00 committed by GitHub
parent 67baf51326
commit 5df9e7c829
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ will be enough to trigger the import of ``spam.py``::
print("imports done")
spam
Now if we run ``python eggs.py``, we will see the output ``"imports done"``
Now if we run ``python -L eggs.py``, we will see the output ``"imports done"``
printed first, then a 10 second delay, and then ``"spam loaded"`` printed after
that.