File: //lib/python2.7/site-packages/google/protobuf/internal/containers.pyc
�
Q�,Qc @ sR d Z d Z d e f d � � YZ d e f d � � YZ d e f d � � YZ d S( s� Contains container classes to represent different protocol buffer types.
This file defines container classes which represent categories of protocol
buffer field types which need extra maintenance. Currently these categories
are:
- Repeated scalar fields - These are all repeated fields which aren't
composite (e.g. they are of simple types like int32, string, etc).
- Repeated composite fields - Repeated fields which are composite. This
includes groups and nested messages.
s petar@google.com (Petar Petrov)t
BaseContainerc B sY e Z d Z d d g Z d � Z d � Z d � Z d � Z d � Z d � Z d � Z
RS(
s Base container class.t _message_listenert _valuesc C s | | _ g | _ d S( s�
Args:
message_listener: A MessageListener implementation.
The RepeatedScalarFieldContainer will call this object's
Modified() method when it is modified.
N( R R ( t selft message_listener( ( sG /usr/lib/python2.7/site-packages/google/protobuf/internal/containers.pyt __init__4 s c C s | j | S( s$ Retrieves item by the specified key.( R ( R t key( ( sG /usr/lib/python2.7/site-packages/google/protobuf/internal/containers.pyt __getitem__>