diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-03-23 16:06:06 -0700 |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-03-23 16:06:06 -0700 |
commit | f20651c7878e3b37a7175922bf7a1ff4b428f818 (patch) | |
tree | aae93c8833441f33e515a234e6e5b61090032844 /Parser/Python.asdl | |
parent | 09419f23ef7e459956abadb2834b14c553637abd (diff) | |
parent | 184eb1cba66def75440ee585826b437711ea5996 (diff) | |
download | cpython-f20651c7878e3b37a7175922bf7a1ff4b428f818.tar.gz |
Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and
correctly check for errors on two CreateFileMapping calls.
Diffstat (limited to 'Parser/Python.asdl')
-rw-r--r-- | Parser/Python.asdl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl index c24d840619..debd89edb8 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -1,4 +1,4 @@ --- ASDL's five builtin types are identifier, int, string, bytes, object +-- ASDL's six builtin types are identifier, int, string, bytes, object, singleton module Python { @@ -69,8 +69,8 @@ module Python | Num(object n) -- a number as a PyObject. | Str(string s) -- need to specify raw, unicode, etc? | Bytes(bytes s) + | NameConstant(singleton value) | Ellipsis - -- other literals? bools? -- the following expression can appear in assignment context | Attribute(expr value, identifier attr, expr_context ctx) @@ -103,11 +103,11 @@ module Python excepthandler = ExceptHandler(expr? type, identifier? name, stmt* body) attributes (int lineno, int col_offset) - arguments = (arg* args, identifier? vararg, expr? varargannotation, - arg* kwonlyargs, identifier? kwarg, - expr? kwargannotation, expr* defaults, - expr* kw_defaults) + arguments = (arg* args, arg? vararg, arg* kwonlyargs, expr* kw_defaults, + arg? kwarg, expr* defaults) + arg = (identifier arg, expr? annotation) + attributes (int lineno, int col_offset) -- keyword arguments supplied to call keyword = (identifier arg, expr value) |