diff options
author | José Fonseca <jose.r.fonseca@gmail.com> | 2011-10-15 11:21:15 +0100 |
---|---|---|
committer | José Fonseca <jose.r.fonseca@gmail.com> | 2011-10-15 11:21:15 +0100 |
commit | 74163460a78dcbb96229eec4340abb3736d230f0 (patch) | |
tree | 020c0e5b9d658052da3fd19e2e805dbdbb6bdc19 /specs/stdapi.py | |
parent | 44756655362254679ae8b6ecad66104175b5e773 (diff) |
Remove dead base parameter to literal types.
Unnecessary given we encode it in binary form anyway.
Diffstat (limited to 'specs/stdapi.py')
-rw-r--r-- | specs/stdapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/specs/stdapi.py b/specs/stdapi.py index a92b9ba5..11b1eef9 100644 --- a/specs/stdapi.py +++ b/specs/stdapi.py @@ -72,7 +72,7 @@ Void = _Void() class Literal(Type): - def __init__(self, expr, format, base=10): + def __init__(self, expr, format): Type.__init__(self, expr) self.format = format |