Searched refs:global_names (Results 1 - 1 of 1) sorted by relevance

/development/scripts/app_engine_server/gae_shell/
H A Dshell.py84 global_names list properties. (They're parallel lists to work around the
101 global_names = db.ListProperty(db.Text) variable in class:Session
117 if name in self.global_names:
118 index = self.global_names.index(name)
121 self.global_names.append(db.Text(name))
132 if name in self.global_names:
133 index = self.global_names.index(name)
134 del self.global_names[index]
141 for name, val in zip(self.global_names, self.globals))

Completed in 79 milliseconds