aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Expand)Author
2021-01-25starlark: fix bug in int(string, base=int) (#344)alandonovan
2021-01-22spec: remove more stale implementation notes (#342)alandonovan
2021-01-21resolver: make -nesteddef and -lambda always on (#328)alandonovan
2021-01-19doc/spec.md: fix mistake regarding sign of x % y (#339)alandonovan
2020-11-11spec: remove stale implementation notes (#315)alandonovan
2020-10-14spec: fix typo in raw string example (#311)alandonovan
2020-09-01spec: clarify resolution of undefined names (#303)alandonovan
2020-08-04spec: clarify scope rules for comprehensions (#299)alandonovan
2020-07-21starlark: permit assigments to () and [] (#294)alandonovan
2020-06-15syntax: permit \" and \' escapes in both "..." and '...' literals (#279)alandonovan
2020-06-09spec: load statements may not be nested in any other statement (#276)alandonovan
2020-03-26syntax: strict string escapes (#265)alandonovan
2020-03-05syntax: permit trailing commas in all function defs and calls (#263)alandonovan
2019-12-18spec: document string conversion differencesalandonovan
2019-12-01spec: document 3-arg getattralandonovan
2019-11-27doc: three minor tweaks to specalandonovan
2019-10-16spec: fix a broken link (#245)Nick Santos
2019-09-19doc: fix typoalandonovan
2019-08-08Update dialect differences (#230)Marwan Tammam
2019-07-16Fix a typo (#227)Vladimir Moskva
2019-07-11spec: add '0' as valid decimal_lit (#223)Robin Eklind
2019-07-09Fix rstrip/lstrip spec examples (#221)Marwan Tammam
2019-05-28starlark: add a fail function (#210)alandonovan
2019-05-28syntax: drop legacy (0644) octal literals (#205)alandonovan
2019-05-28doc: print: drop mention of kwargs (#209)alandonovan
2019-05-14hash: allow only strings, and use same algorithm as Starlark-in-Java (#198)alandonovan
2019-05-14doc: mention reproducibility as a core feature (#199)alandonovan
2019-05-03doc: document string.{,l,r}strip parameter (#196)alandonovan
2019-04-03resolve: load statements now create local bindings (#178)alandonovan
2019-04-01starlark: make dir return a sorted list (#182)alandonovan
2019-02-15Support required keyword-only parameters (#151)alandonovan
2019-02-13Support keyword-only function parameters (#143)Alan Donovan
2019-02-13starlark: fix bug: ''.splitlines() is special case (#148)alandonovan
2019-02-10spec: fix minor typoJosh Bleecher Snyder
2019-02-07belatedly apply review suggestions from #141 (#142)alandonovan
2019-02-07starlark: make built-ins require True/False for bool params (#141)alandonovan
2019-01-30resolve: enable bitwise (& | ~ ^ << >>) operators always (#123)Alan Donovan
2019-01-23starlark: permit list.pop(i) for -n <= i < 0 (#126)alandonovan
2019-01-23resolve: disallow augmented assignments at toplevel (#125)alandonovan
2019-01-18doc: document call argument evaluation order (#118)alandonovan
2019-01-15doc: add missing articleAlan Donovan
2019-01-14doc: remove unnecessary parens in lambda(x)Alan Donovan
2019-01-05doc: fix another bold tagAlan Donovan
2019-01-05doc: close bold tag (#102)Alessandro Arzilli
2018-12-18starlark: permit if/for/while at toplevel if -globalreassignAlan Donovan
2018-12-14print: disallow **kwargs (#73)alandonovan
2018-12-14resolve: statically reject duplicate keyword args in a call (#72)alandonovan
2018-12-10doc: remove implementation note at dict.clear (#52)alandonovan
2018-12-07Add while statement and allow recursion (#39)Alessandro Arzilli
2018-12-06fix type (#45)Nate Finch