Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4f239e commit 0b1cd59Copy full SHA for 0b1cd59
1 file changed
stubs/protobuf/google/protobuf/descriptor_pool.pyi
@@ -7,12 +7,19 @@ class DescriptorPool:
7
def AddSerializedFile(self, serialized_file_desc_proto): ...
8
def AddDescriptor(self, desc): ...
9
def AddEnumDescriptor(self, enum_desc): ...
10
+ def AddServiceDescriptor(self, service_desc): ...
11
+ def AddExtensionDescriptor(self, extension): ...
12
def AddFileDescriptor(self, file_desc): ...
13
def FindFileByName(self, file_name): ...
14
def FindFileContainingSymbol(self, symbol): ...
15
def FindMessageTypeByName(self, full_name): ...
16
def FindEnumTypeByName(self, full_name): ...
17
def FindFieldByName(self, full_name): ...
18
+ def FindOneofByName(self, full_name): ...
19
def FindExtensionByName(self, full_name): ...
20
+ def FindExtensionByNumber(self, message_descriptor, number): ...
21
+ def FindAllExtensions(self, message_descriptor): ...
22
+ def FindServiceByName(self, full_name): ...
23
+ def FindMethodByName(self, full_name): ...
24
25
def Default(): ...
0 commit comments