Home | History | Annotate | Download | only in gae_shell

Lines Matching full:globals

79   """A shell session. Stores the session's globals.
81 Each session globals is stored in one of two places:
83 If the global is picklable, it's stored in the parallel globals and
92 unpicklable globals.
94 The unpicklable_names property stores all of the names of globals that were
95 added by unpicklable statements. When we pickle and store the globals after
102 globals = db.ListProperty(db.Blob)
119 self.globals[index] = blob
122 self.globals.append(blob)
135 del self.globals[index]
138 """Returns a dictionary view of the globals.
141 for name, val in zip(self.global_names, self.globals))
146 Also removes the names from the globals.
150 names: list of strings; the names of the globals created by the statement.
237 # globals, run the statement, and re-pickle the session globals, all
248 # re-initialize the globals
274 # extract the new globals that this statement added
283 # the names of all of the globals it added in the unpicklables.
289 # new globals back into the datastore.