Home | History | Annotate | Download | only in protobuf

Lines Matching full:dictionary

100   def __new__(cls, name, bases, dictionary):
113 dictionary: The class dictionary of the class we're
114 constructing. dictionary[_DESCRIPTOR_KEY] must contain
121 descriptor = dictionary[GeneratedProtocolMessageType._DESCRIPTOR_KEY]
122 bases = _NewMessage(bases, descriptor, dictionary)
125 new_class = superclass.__new__(cls, name, bases, dictionary)
129 def __init__(cls, name, bases, dictionary):
141 dictionary: The class dictionary of the class we're
142 constructing. dictionary[_DESCRIPTOR_KEY] must contain
146 descriptor = dictionary[GeneratedProtocolMessageType._DESCRIPTOR_KEY]
149 superclass.__init__(name, bases, dictionary)