Home | History | Annotate | Download | only in python2.7

Lines Matching refs:DICT

86 # Jython has PyStringMap; it's a dict subclass with string keys
125 DICT = 'd' # build a dict from stack items
126 EMPTY_DICT = '}' # push empty dict
138 SETITEM = 's' # add key+value pair to dict
141 SETITEMS = 'u' # modify dict by adding topmost key+value pairs
410 # items and dict items (as (key, value) tuples), or None.
646 write(MARK + DICT)
1036 dispatch[DICT] = load_dict
1197 dict = stack[-1]
1198 dict[key] = value
1204 dict = stack[mark - 1]
1206 dict[stack[i]] = stack[i + 1]