From 1682a95f5757df17d926fb38fd76e36642e5172d Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Fri, 27 Apr 2012 00:59:05 -0500 Subject: Asm.insert_multiple_with_dependencies original-commit-id: 226e964f1d2251b9fdab1fa54262ad81e6d39599 --- crystal.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crystal.py') diff --git a/crystal.py b/crystal.py index 20de08d..fb34f99 100644 --- a/crystal.py +++ b/crystal.py @@ -4778,6 +4778,9 @@ class Asm: if self.debug: print "object.__class__="+str(object.__class__) + " object is: " + str(object) self.insert(object) + def insert_multiple_with_dependencies(self, objects): + for object in objects: + self.insert_single_with_dependencies(object) def insert_all(self, limit=100): count = 0 for each in script_parse_table.items(): -- cgit v1.2.3