aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Laurent Le Brun <laurentlb@google.com>2016-06-23 17:54:53 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-06-24 08:12:08 +0000
commit1c88f9cfafcd7f8856066a0ca4531ca2fc92c5bd (patch)
treec1a11e56097ac3a7d02ac38f5f8e667e30bad73a /site
parent122bc9ca298cc3bd13912a77cd527a43a47e7b0a (diff)
Document more differences with Python: nested functions and for loops
-- MOS_MIGRATED_REVID=125694309
Diffstat (limited to 'site')
-rw-r--r--site/docs/skylark/concepts.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/skylark/concepts.md b/site/docs/skylark/concepts.md
index 873036e105..7b180123ff 100644
--- a/site/docs/skylark/concepts.md
+++ b/site/docs/skylark/concepts.md
@@ -176,7 +176,7 @@ The following Python features are not supported:
* `class` (see [`struct`](lib/globals.html#struct) function)
* `import` (see [`load`](#loading-a-skylark-extension) statement)
* `while`, `yield`
-* `lambda`
+* `lambda` and nested functions
* `is` (use `==` instead)
* `try`, `raise`, `except`, `finally` (see [`fail`](lib/globals.html#fail)
for fatal errors).