14 lines
395 B
Text
14 lines
395 B
Text
$NetBSD: patch-aa,v 1.1 2009/07/16 15:11:37 joerg Exp $
|
|
|
|
--- Lib/fontTools/ttLib/tables/ttProgram.py.orig 2009-07-16 17:07:23.000000000 +0200
|
|
+++ Lib/fontTools/ttLib/tables/ttProgram.py
|
|
@@ -394,7 +394,7 @@ if __name__ == "__main__":
|
|
|
|
p = Program()
|
|
p.fromBytecode(bc)
|
|
- as = p.getAssembly()
|
|
- p.fromAssembly(as)
|
|
+ as_ = p.getAssembly()
|
|
+ p.fromAssembly(as_)
|
|
print bc == p.getBytecode()
|
|
|