(db, module)
| 173 | return db |
| 174 | |
| 175 | def add_tables(db, module): |
| 176 | for table in module.tables: |
| 177 | add_data(db, table, getattr(module, table)) |
| 178 | |
| 179 | def make_id(str): |
| 180 | identifier_chars = string.ascii_letters + string.digits + "._" |
nothing calls this directly
no test coverage detected