git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@239 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
jvr 2002-05-16 18:13:01 +00:00
parent 7007a08545
commit 6f03a58f59

View File

@ -797,7 +797,6 @@ class T1OutlineExtractor(T2OutlineExtractor):
class DictDecompiler(ByteCodeDecompilerBase):
operandEncoding = cffDictOperandEncoding
dictDefaults = {}
def __init__(self, strings):
self.stack = []
@ -863,7 +862,7 @@ class DictDecompiler(ByteCodeDecompilerBase):
out = []
current = 0
for v in self.popall():
current = v + current
current = current + v
out.append(current)
return out