|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /lib/python2.7/site-packages/google/protobuf/internal/ |
Upload File : |
�
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__>