├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── main.yml │ ├── performance-regression.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CHANGES.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── C_EXTENSION.md ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── docs ├── Makefile ├── amazon.ion.rst ├── amazon.rst ├── conf.py ├── index.rst ├── modules.rst └── requirements.txt ├── pyproject.toml ├── src-python └── amazon │ ├── __init__.py │ ├── ion │ ├── __init__.py │ ├── core.py │ ├── equivalence.py │ ├── exceptions.py │ ├── json_encoder.py │ ├── reader.py │ ├── reader_binary.py │ ├── reader_managed.py │ ├── reader_text.py │ ├── simple_types.py │ ├── simpleion.py │ ├── sliceable_buffer.py │ ├── symbols.py │ ├── util.py │ ├── writer.py │ ├── writer_binary.py │ ├── writer_binary_raw.py │ ├── writer_binary_raw_fields.py │ ├── writer_buffer.py │ └── writer_text.py │ └── ionbenchmark │ ├── Format.py │ ├── __init__.py │ ├── benchmark_runner.py │ ├── benchmark_spec.py │ ├── cbor_load_dump.py │ ├── ion_benchmark_cli.py │ ├── ion_load_dump.py │ ├── json_load_dump.py │ ├── proto.py │ ├── proto_tools.py │ ├── report.py │ ├── sample_dist.py │ ├── self_describing_proto.proto │ ├── self_describing_proto.py │ └── self_describing_proto_pb2.py ├── src ├── CMakeLists.txt ├── _ioncmodule.h └── ioncmodule.c └── tests ├── MyMemoizer.py ├── __init__.py ├── benchmark_sample_data ├── cbor │ └── sample ├── compare │ ├── cats_baseline.ion │ ├── cats_large_regression.ion │ └── cats_small_regression.ion ├── integers.10n ├── integers.ion ├── json │ └── object.json └── sample_spec │ ├── README.md │ ├── cat.cbor │ ├── cat.desc │ ├── cat.ion │ ├── cat.json │ ├── cat.proto │ ├── cat.protobuf_data │ ├── cat.sd_protobuf_data │ ├── multiple_top_level_object.cbor │ ├── multiple_top_level_object.ion │ ├── multiple_top_level_object.json │ └── spec.ion ├── event_aliases.py ├── reader_util.py ├── test_benchmark_cli.py ├── test_benchmark_spec.py ├── test_cookbook.py ├── test_core_iontype.py ├── test_core_multimap.py ├── test_decimal.py ├── test_equivalence.py ├── test_events.py ├── test_json_encoder.py ├── test_package.py ├── test_reader_base.py ├── test_reader_binary.py ├── test_reader_buffer.py ├── test_reader_managed.py ├── test_reader_text.py ├── test_simple_types.py ├── test_simpleion.py ├── test_sliceable_buffer.py ├── test_symbols_catalog.py ├── test_symbols_table.py ├── test_timestamp.py ├── test_util_enum.py ├── test_util_record.py ├── test_util_unicode.py ├── test_vectors.py ├── test_writer_base.py ├── test_writer_binary.py ├── test_writer_binary_raw.py ├── test_writer_binary_raw_fields.py ├── test_writer_buffer.py ├── test_writer_text.py ├── trampoline_util.py └── writer_util.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/performance-regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.github/workflows/performance-regression.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.6 FATAL_ERROR) 2 | project(amazon) 3 | 4 | add_subdirectory(src) 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /C_EXTENSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/C_EXTENSION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/amazon.ion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/docs/amazon.ion.rst -------------------------------------------------------------------------------- /docs/amazon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/docs/amazon.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src-python/amazon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/__init__.py -------------------------------------------------------------------------------- /src-python/amazon/ion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/__init__.py -------------------------------------------------------------------------------- /src-python/amazon/ion/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/core.py -------------------------------------------------------------------------------- /src-python/amazon/ion/equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/equivalence.py -------------------------------------------------------------------------------- /src-python/amazon/ion/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/exceptions.py -------------------------------------------------------------------------------- /src-python/amazon/ion/json_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/json_encoder.py -------------------------------------------------------------------------------- /src-python/amazon/ion/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/reader.py -------------------------------------------------------------------------------- /src-python/amazon/ion/reader_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/reader_binary.py -------------------------------------------------------------------------------- /src-python/amazon/ion/reader_managed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/reader_managed.py -------------------------------------------------------------------------------- /src-python/amazon/ion/reader_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/reader_text.py -------------------------------------------------------------------------------- /src-python/amazon/ion/simple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/simple_types.py -------------------------------------------------------------------------------- /src-python/amazon/ion/simpleion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/simpleion.py -------------------------------------------------------------------------------- /src-python/amazon/ion/sliceable_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/sliceable_buffer.py -------------------------------------------------------------------------------- /src-python/amazon/ion/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/symbols.py -------------------------------------------------------------------------------- /src-python/amazon/ion/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/util.py -------------------------------------------------------------------------------- /src-python/amazon/ion/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/writer.py -------------------------------------------------------------------------------- /src-python/amazon/ion/writer_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/writer_binary.py -------------------------------------------------------------------------------- /src-python/amazon/ion/writer_binary_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/writer_binary_raw.py -------------------------------------------------------------------------------- /src-python/amazon/ion/writer_binary_raw_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/writer_binary_raw_fields.py -------------------------------------------------------------------------------- /src-python/amazon/ion/writer_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/writer_buffer.py -------------------------------------------------------------------------------- /src-python/amazon/ion/writer_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ion/writer_text.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/Format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/Format.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/__init__.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/benchmark_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/benchmark_runner.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/benchmark_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/benchmark_spec.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/cbor_load_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/cbor_load_dump.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/ion_benchmark_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/ion_benchmark_cli.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/ion_load_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/ion_load_dump.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/json_load_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/json_load_dump.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/proto.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/proto_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/proto_tools.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/report.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/sample_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/sample_dist.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/self_describing_proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/self_describing_proto.proto -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/self_describing_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/self_describing_proto.py -------------------------------------------------------------------------------- /src-python/amazon/ionbenchmark/self_describing_proto_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src-python/amazon/ionbenchmark/self_describing_proto_pb2.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/_ioncmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src/_ioncmodule.h -------------------------------------------------------------------------------- /src/ioncmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/src/ioncmodule.c -------------------------------------------------------------------------------- /tests/MyMemoizer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/benchmark_sample_data/cbor/sample: -------------------------------------------------------------------------------- 1 | sthis is a test file -------------------------------------------------------------------------------- /tests/benchmark_sample_data/compare/cats_baseline.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/compare/cats_baseline.ion -------------------------------------------------------------------------------- /tests/benchmark_sample_data/compare/cats_large_regression.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/compare/cats_large_regression.ion -------------------------------------------------------------------------------- /tests/benchmark_sample_data/compare/cats_small_regression.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/compare/cats_small_regression.ion -------------------------------------------------------------------------------- /tests/benchmark_sample_data/integers.10n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/integers.10n -------------------------------------------------------------------------------- /tests/benchmark_sample_data/integers.ion: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /tests/benchmark_sample_data/json/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/json/object.json -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/README.md -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.cbor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.cbor -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.desc -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.ion -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.json -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.proto -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.protobuf_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.protobuf_data -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/cat.sd_protobuf_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/cat.sd_protobuf_data -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/multiple_top_level_object.cbor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/multiple_top_level_object.cbor -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/multiple_top_level_object.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/multiple_top_level_object.ion -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/multiple_top_level_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/multiple_top_level_object.json -------------------------------------------------------------------------------- /tests/benchmark_sample_data/sample_spec/spec.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/benchmark_sample_data/sample_spec/spec.ion -------------------------------------------------------------------------------- /tests/event_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/event_aliases.py -------------------------------------------------------------------------------- /tests/reader_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/reader_util.py -------------------------------------------------------------------------------- /tests/test_benchmark_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_benchmark_cli.py -------------------------------------------------------------------------------- /tests/test_benchmark_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_benchmark_spec.py -------------------------------------------------------------------------------- /tests/test_cookbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_cookbook.py -------------------------------------------------------------------------------- /tests/test_core_iontype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_core_iontype.py -------------------------------------------------------------------------------- /tests/test_core_multimap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_core_multimap.py -------------------------------------------------------------------------------- /tests/test_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_decimal.py -------------------------------------------------------------------------------- /tests/test_equivalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_equivalence.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_json_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_json_encoder.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /tests/test_reader_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_reader_base.py -------------------------------------------------------------------------------- /tests/test_reader_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_reader_binary.py -------------------------------------------------------------------------------- /tests/test_reader_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_reader_buffer.py -------------------------------------------------------------------------------- /tests/test_reader_managed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_reader_managed.py -------------------------------------------------------------------------------- /tests/test_reader_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_reader_text.py -------------------------------------------------------------------------------- /tests/test_simple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_simple_types.py -------------------------------------------------------------------------------- /tests/test_simpleion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_simpleion.py -------------------------------------------------------------------------------- /tests/test_sliceable_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_sliceable_buffer.py -------------------------------------------------------------------------------- /tests/test_symbols_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_symbols_catalog.py -------------------------------------------------------------------------------- /tests/test_symbols_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_symbols_table.py -------------------------------------------------------------------------------- /tests/test_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_timestamp.py -------------------------------------------------------------------------------- /tests/test_util_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_util_enum.py -------------------------------------------------------------------------------- /tests/test_util_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_util_record.py -------------------------------------------------------------------------------- /tests/test_util_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_util_unicode.py -------------------------------------------------------------------------------- /tests/test_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_vectors.py -------------------------------------------------------------------------------- /tests/test_writer_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_writer_base.py -------------------------------------------------------------------------------- /tests/test_writer_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_writer_binary.py -------------------------------------------------------------------------------- /tests/test_writer_binary_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_writer_binary_raw.py -------------------------------------------------------------------------------- /tests/test_writer_binary_raw_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_writer_binary_raw_fields.py -------------------------------------------------------------------------------- /tests/test_writer_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_writer_buffer.py -------------------------------------------------------------------------------- /tests/test_writer_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/test_writer_text.py -------------------------------------------------------------------------------- /tests/trampoline_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/trampoline_util.py -------------------------------------------------------------------------------- /tests/writer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-ion/ion-python/HEAD/tests/writer_util.py --------------------------------------------------------------------------------