diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-04-27 00:59:05 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-04-27 00:59:05 -0500 |
commit | 226e964f1d2251b9fdab1fa54262ad81e6d39599 (patch) | |
tree | 8cbf3193d39cbab94c96603b041f60455f39009b /extras/crystal.py | |
parent | bde9cb3b5731e82aa7b694c0005d12f053dc9e06 (diff) |
Asm.insert_multiple_with_dependencies
Diffstat (limited to 'extras/crystal.py')
-rw-r--r-- | extras/crystal.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extras/crystal.py b/extras/crystal.py index 20de08d71..fb34f9962 100644 --- a/extras/crystal.py +++ b/extras/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(): |