protobuf 6.31.1__tar.gz → 6.32.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of protobuf might be problematic. Click here for more details.
- {protobuf-6.31.1/protobuf.egg-info → protobuf-6.32.0}/PKG-INFO +13 -2
- protobuf-6.32.0/google/__init__.py +3 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/__init__.py +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/any_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/api_pb2.py +13 -9
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/compiler/plugin_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.py +398 -246
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.upb_minitable.c +25 -409
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.upbdefs.c +556 -556
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor_pb2.py +75 -73
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor_pool.py +5 -4
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/duration_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/empty_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/field_mask_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/api_implementation.py +0 -6
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/extension_dict.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/field_mask.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/python_edition_defaults.py +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/python_message.py +10 -2
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/type_checkers.py +47 -5
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/json_format.py +55 -32
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/runtime_version.py +7 -27
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/source_context_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/struct_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/text_format.py +30 -19
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/timestamp_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/type_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/wrappers_pb2.py +3 -3
- {protobuf-6.31.1 → protobuf-6.32.0/protobuf.egg-info}/PKG-INFO +13 -2
- {protobuf-6.31.1 → protobuf-6.32.0}/protobuf.egg-info/SOURCES.txt +3 -2
- {protobuf-6.31.1 → protobuf-6.32.0}/python/convert.c +69 -17
- {protobuf-6.31.1 → protobuf-6.32.0}/python/descriptor.c +12 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/descriptor_containers.c +9 -5
- {protobuf-6.31.1 → protobuf-6.32.0}/python/descriptor_pool.c +7 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/map.c +11 -12
- {protobuf-6.31.1 → protobuf-6.32.0}/python/map.h +3 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/python/message.c +28 -36
- {protobuf-6.31.1 → protobuf-6.32.0}/python/protobuf.c +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/python/protobuf.h +3 -2
- {protobuf-6.31.1 → protobuf-6.32.0}/python/repeated.c +12 -9
- {protobuf-6.31.1 → protobuf-6.32.0}/python/repeated.h +4 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/setup.py +19 -4
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/string_view.h +7 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/generated_code_support.h +17 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/hash/common.c +2 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mem/alloc.c +2 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mem/alloc.h +25 -6
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mem/arena.c +88 -73
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mem/internal/arena.h +62 -56
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/accessors.h +4 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/array.h +3 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/copy.c +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/accessors.h +10 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/array.h +34 -3
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/compare_unknown.c +9 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/message.h +23 -9
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/promote.c +22 -9
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/promote.h +4 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/decode.c +126 -65
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/decode.h +6 -2
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/extension.h +3 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/extension_registry.c +10 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/extension_registry.h +1 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/extension.h +5 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/field.h +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/message.h +69 -9
- protobuf-6.32.0/upb/mini_table/message.c +46 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/message.h +5 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/port/def.inc +109 -100
- protobuf-6.32.0/upb/port/sanitizers.h +168 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/port/undef.inc +13 -9
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/field_def.h +1 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/upb_edition_defaults.h +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/message_def.c +21 -2
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/decode.c +162 -195
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/decode.h +14 -5
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/encode.c +292 -203
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/encode.h +1 -5
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/eps_copy_input_stream.h +13 -4
- protobuf-6.32.0/upb/wire/internal/decoder.c +43 -0
- protobuf-6.32.0/upb/wire/internal/decoder.h +158 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/reader.h +7 -1
- protobuf-6.32.0/upb/wire/writer.h +20 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/utf8_range/utf8_range.c +6 -6
- {protobuf-6.31.1 → protobuf-6.32.0}/utf8_range/utf8_range_neon.inc +1 -1
- {protobuf-6.31.1 → protobuf-6.32.0}/utf8_range/utf8_range_sse.inc +1 -1
- protobuf-6.31.1/google/__init__.py +0 -4
- protobuf-6.31.1/upb/mini_table/message.c +0 -84
- protobuf-6.31.1/upb/wire/internal/decode_fast.c +0 -1000
- protobuf-6.31.1/upb/wire/internal/decode_fast.h +0 -152
- protobuf-6.31.1/upb/wire/internal/decoder.h +0 -120
- {protobuf-6.31.1 → protobuf-6.32.0}/LICENSE +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/MANIFEST.in +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/README.md +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/any.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/compiler/__init__.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.upb.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.upb.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.upb_minitable.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor.upbdefs.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/descriptor_database.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/duration.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/__init__.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/builder.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/containers.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/decoder.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/encoder.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/enum_type_wrapper.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/message_listener.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/testing_refleaks.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/well_known_types.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/internal/wire_format.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/message.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/message_factory.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/proto.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/proto_builder.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/proto_json.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/proto_text.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/pyext/__init__.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/pyext/cpp_message.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/reflection.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/service_reflection.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/symbol_database.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/testdata/__init__.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/text_encoding.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/timestamp.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/unknown_fields.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/google/protobuf/util/__init__.py +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/protobuf.egg-info/dependency_links.txt +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/protobuf.egg-info/top_level.txt +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/convert.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/descriptor.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/descriptor_containers.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/descriptor_pool.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/extension_dict.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/extension_dict.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/message.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/python_api.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/unknown_fields.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/python/unknown_fields.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/setup.cfg +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/descriptor_constants.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/internal/endian.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/internal/log2.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/status.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/status.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/base/upcast.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/hash/common.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/hash/int_table.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/hash/str_table.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/atoi.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/atoi.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/round_trip.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/round_trip.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/strtod.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/strtod.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/unicode.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/lex/unicode.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mem/arena.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/accessors.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/accessors_split64.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/array.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/compare.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/compare.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/compat.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/compat.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/copy.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/compare_unknown.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/extension.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/extension.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/iterator.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/iterator.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/map.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/map_entry.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/map_sorter.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/message.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/tagged_ptr.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/internal/types.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/map.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/map.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/map_gencode_util.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/map_sorter.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/merge.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/merge.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/message.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/message.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/tagged_ptr.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/message/value.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/build_enum.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/build_enum.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/base92.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/base92.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/decoder.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/encode.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/encode.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/modifiers.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/internal/wire_constants.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/link.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_descriptor/link.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/compat.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/compat.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/enum.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/field.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/file.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/enum.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/file.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/message.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/size_log2.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/internal/sub.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/mini_table/sub.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/port/atomic.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/port/vsnprintf_compat.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/common.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/def_pool.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/def_pool.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/def_type.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/def_type.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/desc_state.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/descriptor_bootstrap.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/enum_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/enum_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/enum_reserved_range.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/enum_reserved_range.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/enum_value_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/enum_value_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/extension_range.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/extension_range.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/field_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/file_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/file_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/def_builder.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/def_builder.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/def_pool.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/desc_state.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/enum_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/enum_reserved_range.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/enum_value_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/extension_range.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/field_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/file_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/message_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/message_reserved_range.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/method_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/oneof_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/service_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/strdup2.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/internal/strdup2.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/message.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/message.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/message_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/message_reserved_range.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/message_reserved_range.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/method_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/method_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/oneof_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/oneof_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/service_def.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/reflection/service_def.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/debug_string.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/debug_string.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/encode.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/encode.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/internal/encode.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/internal/encode.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/text/options.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/util/def_to_proto.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/util/def_to_proto.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/util/required_fields.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/util/required_fields.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/byte_size.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/byte_size.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/eps_copy_input_stream.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/internal/constants.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/internal/reader.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/reader.c +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/upb/wire/types.h +0 -0
- {protobuf-6.31.1 → protobuf-6.32.0}/utf8_range/utf8_range.h +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: protobuf
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.32.0
|
|
4
4
|
Summary: Protocol Buffers
|
|
5
5
|
Home-page: https://developers.google.com/protocol-buffers/
|
|
6
6
|
Download-URL: https://github.com/protocolbuffers/protobuf/releases
|
|
@@ -17,5 +17,16 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
18
|
Requires-Python: >=3.9
|
|
19
19
|
License-File: LICENSE
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: download-url
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: license
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: maintainer
|
|
27
|
+
Dynamic: maintainer-email
|
|
28
|
+
Dynamic: project-url
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
Dynamic: summary
|
|
20
31
|
|
|
21
32
|
Protocol Buffers are Google's data interchange format
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
4
|
# source: google/protobuf/any.proto
|
|
5
|
-
# Protobuf Python Version: 6.
|
|
5
|
+
# Protobuf Python Version: 6.32.0
|
|
6
6
|
"""Generated protocol buffer code."""
|
|
7
7
|
from google.protobuf import descriptor as _descriptor
|
|
8
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -12,8 +12,8 @@ from google.protobuf.internal import builder as _builder
|
|
|
12
12
|
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
13
|
_runtime_version.Domain.PUBLIC,
|
|
14
14
|
6,
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
32,
|
|
16
|
+
0,
|
|
17
17
|
'',
|
|
18
18
|
'google/protobuf/any.proto'
|
|
19
19
|
)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
4
|
# source: google/protobuf/api.proto
|
|
5
|
-
# Protobuf Python Version: 6.
|
|
5
|
+
# Protobuf Python Version: 6.32.0
|
|
6
6
|
"""Generated protocol buffer code."""
|
|
7
7
|
from google.protobuf import descriptor as _descriptor
|
|
8
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -12,8 +12,8 @@ from google.protobuf.internal import builder as _builder
|
|
|
12
12
|
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
13
|
_runtime_version.Domain.PUBLIC,
|
|
14
14
|
6,
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
32,
|
|
16
|
+
0,
|
|
17
17
|
'',
|
|
18
18
|
'google/protobuf/api.proto'
|
|
19
19
|
)
|
|
@@ -26,7 +26,7 @@ from google.protobuf import source_context_pb2 as google_dot_protobuf_dot_source
|
|
|
26
26
|
from google.protobuf import type_pb2 as google_dot_protobuf_dot_type__pb2
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19google/protobuf/api.proto\x12\x0fgoogle.protobuf\x1a$google/protobuf/source_context.proto\x1a\x1agoogle/protobuf/type.proto\"\
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19google/protobuf/api.proto\x12\x0fgoogle.protobuf\x1a$google/protobuf/source_context.proto\x1a\x1agoogle/protobuf/type.proto\"\xdb\x02\n\x03\x41pi\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x31\n\x07methods\x18\x02 \x03(\x0b\x32\x17.google.protobuf.MethodR\x07methods\x12\x31\n\x07options\x18\x03 \x03(\x0b\x32\x17.google.protobuf.OptionR\x07options\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12\x45\n\x0esource_context\x18\x05 \x01(\x0b\x32\x1e.google.protobuf.SourceContextR\rsourceContext\x12.\n\x06mixins\x18\x06 \x03(\x0b\x32\x16.google.protobuf.MixinR\x06mixins\x12/\n\x06syntax\x18\x07 \x01(\x0e\x32\x17.google.protobuf.SyntaxR\x06syntax\x12\x18\n\x07\x65\x64ition\x18\x08 \x01(\tR\x07\x65\x64ition\"\xd4\x02\n\x06Method\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12(\n\x10request_type_url\x18\x02 \x01(\tR\x0erequestTypeUrl\x12+\n\x11request_streaming\x18\x03 \x01(\x08R\x10requestStreaming\x12*\n\x11response_type_url\x18\x04 \x01(\tR\x0fresponseTypeUrl\x12-\n\x12response_streaming\x18\x05 \x01(\x08R\x11responseStreaming\x12\x31\n\x07options\x18\x06 \x03(\x0b\x32\x17.google.protobuf.OptionR\x07options\x12\x33\n\x06syntax\x18\x07 \x01(\x0e\x32\x17.google.protobuf.SyntaxB\x02\x18\x01R\x06syntax\x12\x1c\n\x07\x65\x64ition\x18\x08 \x01(\tB\x02\x18\x01R\x07\x65\x64ition\"/\n\x05Mixin\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n\x04root\x18\x02 \x01(\tR\x04rootBv\n\x13\x63om.google.protobufB\x08\x41piProtoP\x01Z,google.golang.org/protobuf/types/known/apipb\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesb\x06proto3')
|
|
30
30
|
|
|
31
31
|
_globals = globals()
|
|
32
32
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
@@ -34,10 +34,14 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'google.protobuf.api_pb2', _
|
|
|
34
34
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
35
|
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
36
|
_globals['DESCRIPTOR']._serialized_options = b'\n\023com.google.protobufB\010ApiProtoP\001Z,google.golang.org/protobuf/types/known/apipb\242\002\003GPB\252\002\036Google.Protobuf.WellKnownTypes'
|
|
37
|
+
_globals['_METHOD'].fields_by_name['syntax']._loaded_options = None
|
|
38
|
+
_globals['_METHOD'].fields_by_name['syntax']._serialized_options = b'\030\001'
|
|
39
|
+
_globals['_METHOD'].fields_by_name['edition']._loaded_options = None
|
|
40
|
+
_globals['_METHOD'].fields_by_name['edition']._serialized_options = b'\030\001'
|
|
37
41
|
_globals['_API']._serialized_start=113
|
|
38
|
-
_globals['_API']._serialized_end=
|
|
39
|
-
_globals['_METHOD']._serialized_start=
|
|
40
|
-
_globals['_METHOD']._serialized_end=
|
|
41
|
-
_globals['_MIXIN']._serialized_start=
|
|
42
|
-
_globals['_MIXIN']._serialized_end=
|
|
42
|
+
_globals['_API']._serialized_end=460
|
|
43
|
+
_globals['_METHOD']._serialized_start=463
|
|
44
|
+
_globals['_METHOD']._serialized_end=803
|
|
45
|
+
_globals['_MIXIN']._serialized_start=805
|
|
46
|
+
_globals['_MIXIN']._serialized_end=852
|
|
43
47
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
3
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
4
|
# source: google/protobuf/compiler/plugin.proto
|
|
5
|
-
# Protobuf Python Version: 6.
|
|
5
|
+
# Protobuf Python Version: 6.32.0
|
|
6
6
|
"""Generated protocol buffer code."""
|
|
7
7
|
from google.protobuf import descriptor as _descriptor
|
|
8
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
@@ -12,8 +12,8 @@ from google.protobuf.internal import builder as _builder
|
|
|
12
12
|
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
13
|
_runtime_version.Domain.PUBLIC,
|
|
14
14
|
6,
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
32,
|
|
16
|
+
0,
|
|
17
17
|
'',
|
|
18
18
|
'google/protobuf/compiler/plugin.proto'
|
|
19
19
|
)
|