diff options
| author | serpilliere <devnull@localhost> | 2014-06-25 15:07:51 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-06-25 15:07:51 +0200 |
| commit | b22dcfbca8ee132d5a9fe46d7050330afe68af16 (patch) | |
| tree | 1ee7190a3c5854c6927832d4d34be4b4eccb9c68 /miasm2/core/cpu.py | |
| parent | 9b11210e07287b83aefadd288b9eb466e0fd0732 (diff) | |
| download | miasm-b22dcfbca8ee132d5a9fe46d7050330afe68af16.tar.gz miasm-b22dcfbca8ee132d5a9fe46d7050330afe68af16.zip | |
cpu: continue remove some lambda (to allow pickling)
Diffstat (limited to 'miasm2/core/cpu.py')
| -rw-r--r-- | miasm2/core/cpu.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/miasm2/core/cpu.py b/miasm2/core/cpu.py index c230775f..c01759f4 100644 --- a/miasm2/core/cpu.py +++ b/miasm2/core/cpu.py @@ -952,8 +952,6 @@ class instruction(object): o = "%-10s " % self.name args = [] args_str = self.args_str - if args_str is None: - args_str = [lambda x:str(x) for i in xrange(len(self.args))] for arg, arg_str in zip(self.args, args_str): if not isinstance(arg, Expr): raise ValueError('zarb arg type') |