bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)

This commit is contained in:
Serhiy Storchaka 2018-12-19 08:09:46 +02:00 committed by GitHub
parent 82d73554e4
commit 2b57c43f21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
45 changed files with 240 additions and 242 deletions

View file

@ -1108,7 +1108,7 @@ need to define a new function at all::
existing_files = filter(os.path.exists, file_list)
If the function you need doesn't exist, you need to write it. One way to write
small functions is to use the :keyword:`lambda` statement. ``lambda`` takes a
small functions is to use the :keyword:`lambda` expression. ``lambda`` takes a
number of parameters and an expression combining these parameters, and creates
an anonymous function that returns the value of the expression::