diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 05:05:30 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 05:05:30 (GMT) |
commit | e2e23ef97da1ce44c604d86d1f21c2701d7e581f (patch) | |
tree | bca7dc409238d532748ec23f9ffb89c7d4f99e01 /Parser/Python.asdl | |
parent | 5f5cfd121db044b5adf5d9da29fed0d31fec1814 (diff) | |
download | cpython-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.zip cpython-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.tar.gz cpython-e2e23ef97da1ce44c604d86d1f21c2701d7e581f.tar.bz2 |
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
import MAGIC number.
Diffstat (limited to 'Parser/Python.asdl')
-rw-r--r-- | Parser/Python.asdl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl index 00de381..5124e47 100644 --- a/Parser/Python.asdl +++ b/Parser/Python.asdl @@ -65,7 +65,6 @@ module Python version "$Revision$" | Compare(expr left, cmpop* ops, expr* comparators) | Call(expr func, expr* args, keyword* keywords, expr? starargs, expr? kwargs) - | Repr(expr value) | Num(object n) -- a number as a PyObject. | Str(string s) -- need to specify raw, unicode, etc? -- other literals? bools? |