├── .all-contributorsrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── documentation.md │ └── feature-request.md ├── dependabot.yml └── workflows │ ├── build-distributions.yml │ ├── build-test.yml │ ├── deploy.yml │ ├── semantic-pr-title.yml │ └── upload-nightly-wheels.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dev ├── custom-interpretation │ └── README.md ├── example-objects.py └── make-models.py ├── docs-img ├── diagrams │ ├── abstraction-layers.png │ ├── abstraction-layers.svg │ ├── example-dask-graph.png │ ├── uproot-awkward-timeline.png │ └── uproot-awkward-timeline.svg ├── logo │ ├── logo-300px-white.png │ ├── logo-300px.png │ ├── logo-600px.png │ └── logo.svg └── photos │ └── switcheroo.jpg ├── docs-sphinx ├── _templates │ └── breadcrumbs.html ├── basic.rst ├── conf.py ├── index.rst ├── make_changelog.py ├── prepare_docstrings.py ├── requirements.txt └── uproot3-to-4.rst ├── pyproject.toml ├── src └── uproot │ ├── __init__.py │ ├── _awkwardforth.py │ ├── _dask.py │ ├── _util.py │ ├── behavior.py │ ├── behaviors │ ├── RNTuple.py │ ├── RooCurve.py │ ├── RooHist.py │ ├── TAxis.py │ ├── TBranch.py │ ├── TBranchElement.py │ ├── TDatime.py │ ├── TGraph.py │ ├── TGraphAsymmErrors.py │ ├── TGraphErrors.py │ ├── TH1.py │ ├── TH2.py │ ├── TH2Poly.py │ ├── TH3.py │ ├── TParameter.py │ ├── TProfile.py │ ├── TProfile2D.py │ ├── TProfile3D.py │ ├── TTree.py │ └── __init__.py │ ├── cache.py │ ├── compression.py │ ├── const.py │ ├── containers.py │ ├── deserialization.py │ ├── dynamic.py │ ├── exceptions.py │ ├── extras.py │ ├── interpretation │ ├── __init__.py │ ├── custom.py │ ├── grouped.py │ ├── identify.py │ ├── jagged.py │ ├── known_forth │ │ ├── __init__.py │ │ └── atlas.py │ ├── library.py │ ├── numerical.py │ ├── objects.py │ └── strings.py │ ├── language │ ├── __init__.py │ └── python.py │ ├── model.py │ ├── models │ ├── RNTuple.py │ ├── TArray.py │ ├── TAtt.py │ ├── TBasket.py │ ├── TBranch.py │ ├── TClonesArray.py │ ├── TDatime.py │ ├── TGraph.py │ ├── TH.py │ ├── THashList.py │ ├── TLeaf.py │ ├── TList.py │ ├── TMatrixT.py │ ├── TNamed.py │ ├── TObjArray.py │ ├── TObjString.py │ ├── TObject.py │ ├── TRef.py │ ├── TString.py │ ├── TTable.py │ ├── TTime.py │ ├── TTree.py │ └── __init__.py │ ├── pyroot.py │ ├── reading.py │ ├── serialization.py │ ├── sink │ ├── __init__.py │ └── file.py │ ├── source │ ├── __init__.py │ ├── chunk.py │ ├── coalesce.py │ ├── cufile_interface.py │ ├── cursor.py │ ├── file.py │ ├── fsspec.py │ ├── futures.py │ ├── http.py │ ├── object.py │ ├── s3.py │ └── xrootd.py │ ├── streamers.py │ └── writing │ ├── __init__.py │ ├── _cascade.py │ ├── _cascadentuple.py │ ├── _cascadetree.py │ ├── _dask_write.py │ ├── identify.py │ ├── interpret.py │ └── writable.py ├── tests-cuda ├── test_0630_rntuple_basics.py ├── test_0662_rntuple_stl_containers.py ├── test_0962_rntuple_update.py ├── test_1159_rntuple_cluster_groups.py ├── test_1191_rntuple_fixes.py ├── test_1223_more_rntuple_types.py ├── test_1250_rntuple_improvements.py ├── test_1285_rntuple_multicluster_concatenation.py ├── test_1347_rntuple_floats_suppressed_cols.py └── test_1411_rntuple_physlite_ATLAS.py ├── tests-wasm ├── __init__.py ├── test_1272_basic_functionality.py ├── test_1365_awkwardforth_reading.py └── utils.py └── tests ├── __init__.py ├── conftest.py ├── samples └── h_dynamic.pkl ├── test_0001_source_class.py ├── test_0006_notify_when_downloaded.py ├── test_0007_single_chunk_interface.py ├── test_0008_start_interpretation.py ├── test_0009_nested_directories.py ├── test_0010_start_streamers.py ├── test_0011_generate_classes_from_streamers.py ├── test_0013_rntuple_anchor.py ├── test_0014_all_ttree_versions.py ├── test_0016_interpretations.py ├── test_0017_multi_basket_multi_branch_fetch.py ├── test_0018_array_fetching_interface.py ├── test_0022_number_of_branches.py ├── test_0023_more_interpretations_1.py ├── test_0023_ttree_versions.py ├── test_0028_fallback_to_read_streamer.py ├── test_0029_more_string_types.py ├── test_0031_test_stl_containers.py ├── test_0033_more_interpretations_2.py ├── test_0034_generic_objects_in_ttrees.py ├── test_0035_datatype_generality.py ├── test_0038_memberwise_serialization.py ├── test_0043_iterate_function.py ├── test_0044_concatenate_function.py ├── test_0046_histograms_bh_hist.py ├── test_0053_parents_should_not_be_bases.py ├── test_0058_detach_model_objects_from_files.py ├── test_0066_fix_http_fallback_freeze.py ├── test_0067_common_entry_offsets.py ├── test_0081_dont_parse_colons.py ├── test_0087_memberwise_splitting_not_implemented_messages.py ├── test_0088_read_with_http.py ├── test_0099_read_from_file_object.py ├── test_0112_fix_pandas_with_cut.py ├── test_0118_fix_name_fetch_again.py ├── test_0123_atlas_issues.py ├── test_0126_turn_unknown_emptyarrays_into_known_types.py ├── test_0167_use_the_common_histogram_interface.py ├── test_0172_allow_allocators_in_vector_typenames.py ├── test_0173_empty_and_multiprocessing_bugs.py ├── test_0182_complain_about_missing_files.py ├── test_0194_fix_lost_cuts_in_iterate.py ├── test_0220_contiguous_byte_ranges_in_http.py ├── test_0228_read_TProfiles.py ├── test_0240_read_TGraphAsymmErrors.py ├── test_0278_specializations_for_TParameter.py ├── test_0302_pickle.py ├── test_0303_empty_jagged_array.py ├── test_0320_start_working_on_ROOT_writing.py ├── test_0322_writablefile_infrastructure.py ├── test_0329_update_existing_root_files.py ├── test_0335_empty_ttree_division_by_zero.py ├── test_0341_manipulate_streamer_info.py ├── test_0344_writabledirectory_can_read.py ├── test_0345_bulk_copy_method.py ├── test_0349_write_TObjString.py ├── test_0350_read_RooCurve_RooHist.py ├── test_0351_write_TList.py ├── test_0352_write_THashList.py ├── test_0384_move_behavior_of_and_fix_383.py ├── test_0398_dimensions_in_leaflist.py ├── test_0405_write_a_histogram.py ├── test_0406_write_a_ttree.py ├── test_0407_read_TDatime.py ├── test_0412_write_multidimensional_numpy_to_ttree.py ├── test_0414_write_jagged_arrays.py ├── test_0416_writing_compressed_data.py ├── test_0418_read_TTable.py ├── test_0420_pyroot_uproot_interoperability.py ├── test_0422_hist_integration.py ├── test_0430_global_index_for_tuples_of_DataFrames.py ├── test_0438_TClonesArray_is_not_AsGrouped.py ├── test_0439_check_awkward_before_numpy.py ├── test_0442_regular_TClonesArray.py ├── test_0472_tstreamerinfo_for_ttree.py ├── test_0475_remember_to_update_freesegments.py ├── test_0484_manually_add_model_for_TMatrixTSym_double_.py ├── test_0487_implement_asdtypeinplace.py ├── test_0498_create_leaf_branch_in_extend.py ├── test_0519_remove_memmap_copy.py ├── test_0520_dynamic_classes_cant_be_abc_subclasses.py ├── test_0569_fBits_is_4_bytes.py ├── test_0576_unicode_in_names.py ├── test_0578_dask_for_numpy.py ├── test_0580_round_trip_for_no_flow_histograms.py ├── test_0589_explicitly_interpret_RVec_type.py ├── test_0603_dask_delayed_open.py ├── test_0609_num_enteries_func.py ├── test_0610_awkward_form.py ├── test_0630_rntuple_basics.py ├── test_0637_setup_tests_for_AwkwardForth.py ├── test_0643_reading_vector_pair_TLorentzVector_int.py ├── test_0651_implement_transformed_axis.py ├── test_0652_dask_for_awkward.py ├── test_0662_rntuple_stl_containers.py ├── test_0692_fsspec_reading.py ├── test_0692_fsspec_writing.py ├── test_0700_dask_empty_arrays.py ├── test_0705_rntuple_writing_metadata.py ├── test_0750_avoid_empty_TBasket_issue.py ├── test_0755_dask_awkward_column_projection.py ├── test_0791_protect_uproot_project_columns_from_dask_node_names.py ├── test_0798_DAOD_PHYSLITE.py ├── test_0808_fix_awkward_form_for_AsStridedObjects.py ├── test_0816_separate_AwkwardForth_machines_by_TBranch.py ├── test_0832_ak_add_doc_should_also_add_to_typetracer.py ├── test_0840_support_tleafG.py ├── test_0841_fix_814.py ├── test_0844_fix_delete_hist_from_root.py ├── test_0852_fix_strided_interp_extra_offsets.py ├── test_0870_writing_arrays_of_type_unknown_fix_822.py ├── test_0876_uproot_dask_blind_steps.py ├── test_0886_fix_awkward_form_breadcrumbs.py ├── test_0910_fix_906_members_non_numerical_branches.py ├── test_0911_fix_interp_array_non_numerical_objs_issue_880.py ├── test_0912_fix_pandas_and_double_nested_vectors_issue_885.py ├── test_0916_read_from_s3.py ├── test_0927_dont_assume_uproot_in_global_scope_in_TPython_Eval.py ├── test_0930_expressions_in_pandas.py ├── test_0940_feat_add_TLeafC_string_support.py ├── test_0962_rntuple_update.py ├── test_0965_inverted_axes_variances_hist_888.py ├── test_0976_path_object_split.py ├── test_1000-write-TProfiles.py ├── test_1043_const_std_string.py ├── test_1058_dask_awkward_report.py ├── test_1063_dask_distributed.py ├── test_1070_pandas_dataframe_building_performance_fix.py ├── test_1085_dask_write.py ├── test_1102_any_locks_in_models_must_be_transient.py ├── test_1114_fix_attempt_to_concatenate_numpy_with_awkward.py ├── test_1120_check_decompression_executor_pass_for_dask.py ├── test_1127_fix_allow_colon_in_key_names.py ├── test_1128_TGraph_writing.py ├── test_1146_split_ranges_for_large_files_over_http.py ├── test_1154_classof_using_relative_path.py ├── test_1159_rntuple_cluster_groups.py ├── test_1160_std_string_in_TDirectory.py ├── test_1180_read_free_floating_vector_issue_1179.py ├── test_1181_support_for_stl_list.py ├── test_1182_add_support_for_bitset.py ├── test_1183_ttime_custom.py ├── test_1186_dtype_might_raise_ValueError.py ├── test_1189_dask_failing_on_duplicate_keys.py ├── test_1191_rntuple_fixes.py ├── test_1198_coalesce.py ├── test_1207_fix_title_of_TBranch_with_counter.py ├── test_1212_dont_let_update_mess_up_file_version.py ├── test_1221_AwkwardForth_bug.py ├── test_1223_more_rntuple_types.py ├── test_1229_const_in_typename.py ├── test_1250_rntuple_improvements.py ├── test_1254_test_threadpool_executor_for_dask.py ├── test_1264_write_NumPy_array_of_strings.py ├── test_1275_fix_TStreamerLoop_code_generation.py ├── test_1282_add_known_forth_for_atlas.py ├── test_1285_rntuple_multicluster_concatenation.py ├── test_1318_dont_compare_big_endian_in_awkward.py ├── test_1321_pandas_changed_api_again.py ├── test_1347_rntuple_floats_suppressed_cols.py ├── test_1356_basic_rntuple_writing.py ├── test_1375_extend_ak_add_doc.py ├── test_1393_TTree_virtual_arrays.py ├── test_1395_rntuple_writing_lists_and_structs.py ├── test_1406_improved_rntuple_methods.py ├── test_1411_rntuple_physlite_ATLAS.py ├── test_1412_rntuple_dask.py ├── test_1465_ignorecase_extension.py ├── test_1467_rntuple_akform_construction.py ├── test_1476_rntuple_jagged_subfields.py ├── test_1477_custom_interpretation.py ├── test_1492_rntuple_hidden_keys.py └── test_1496_rntuple_write_index_arrays.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-distributions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/workflows/build-distributions.yml -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/workflows/semantic-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/upload-nightly-wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.github/workflows/upload-nightly-wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/README.md -------------------------------------------------------------------------------- /dev/custom-interpretation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/dev/custom-interpretation/README.md -------------------------------------------------------------------------------- /dev/example-objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/dev/example-objects.py -------------------------------------------------------------------------------- /dev/make-models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/dev/make-models.py -------------------------------------------------------------------------------- /docs-img/diagrams/abstraction-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/diagrams/abstraction-layers.png -------------------------------------------------------------------------------- /docs-img/diagrams/abstraction-layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/diagrams/abstraction-layers.svg -------------------------------------------------------------------------------- /docs-img/diagrams/example-dask-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/diagrams/example-dask-graph.png -------------------------------------------------------------------------------- /docs-img/diagrams/uproot-awkward-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/diagrams/uproot-awkward-timeline.png -------------------------------------------------------------------------------- /docs-img/diagrams/uproot-awkward-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/diagrams/uproot-awkward-timeline.svg -------------------------------------------------------------------------------- /docs-img/logo/logo-300px-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/logo/logo-300px-white.png -------------------------------------------------------------------------------- /docs-img/logo/logo-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/logo/logo-300px.png -------------------------------------------------------------------------------- /docs-img/logo/logo-600px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/logo/logo-600px.png -------------------------------------------------------------------------------- /docs-img/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/logo/logo.svg -------------------------------------------------------------------------------- /docs-img/photos/switcheroo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-img/photos/switcheroo.jpg -------------------------------------------------------------------------------- /docs-sphinx/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /docs-sphinx/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/basic.rst -------------------------------------------------------------------------------- /docs-sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/conf.py -------------------------------------------------------------------------------- /docs-sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/index.rst -------------------------------------------------------------------------------- /docs-sphinx/make_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/make_changelog.py -------------------------------------------------------------------------------- /docs-sphinx/prepare_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/prepare_docstrings.py -------------------------------------------------------------------------------- /docs-sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/requirements.txt -------------------------------------------------------------------------------- /docs-sphinx/uproot3-to-4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/docs-sphinx/uproot3-to-4.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/uproot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/__init__.py -------------------------------------------------------------------------------- /src/uproot/_awkwardforth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/_awkwardforth.py -------------------------------------------------------------------------------- /src/uproot/_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/_dask.py -------------------------------------------------------------------------------- /src/uproot/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/_util.py -------------------------------------------------------------------------------- /src/uproot/behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behavior.py -------------------------------------------------------------------------------- /src/uproot/behaviors/RNTuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/RNTuple.py -------------------------------------------------------------------------------- /src/uproot/behaviors/RooCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/RooCurve.py -------------------------------------------------------------------------------- /src/uproot/behaviors/RooHist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/RooHist.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TAxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TAxis.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TBranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TBranch.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TBranchElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TBranchElement.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TDatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TDatime.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TGraph.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TGraphAsymmErrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TGraphAsymmErrors.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TGraphErrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TGraphErrors.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TH1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TH1.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TH2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TH2.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TH2Poly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TH2Poly.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TH3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TH3.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TParameter.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TProfile.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TProfile2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TProfile2D.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TProfile3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TProfile3D.py -------------------------------------------------------------------------------- /src/uproot/behaviors/TTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/TTree.py -------------------------------------------------------------------------------- /src/uproot/behaviors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/behaviors/__init__.py -------------------------------------------------------------------------------- /src/uproot/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/cache.py -------------------------------------------------------------------------------- /src/uproot/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/compression.py -------------------------------------------------------------------------------- /src/uproot/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/const.py -------------------------------------------------------------------------------- /src/uproot/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/containers.py -------------------------------------------------------------------------------- /src/uproot/deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/deserialization.py -------------------------------------------------------------------------------- /src/uproot/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/dynamic.py -------------------------------------------------------------------------------- /src/uproot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/exceptions.py -------------------------------------------------------------------------------- /src/uproot/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/extras.py -------------------------------------------------------------------------------- /src/uproot/interpretation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/__init__.py -------------------------------------------------------------------------------- /src/uproot/interpretation/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/custom.py -------------------------------------------------------------------------------- /src/uproot/interpretation/grouped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/grouped.py -------------------------------------------------------------------------------- /src/uproot/interpretation/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/identify.py -------------------------------------------------------------------------------- /src/uproot/interpretation/jagged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/jagged.py -------------------------------------------------------------------------------- /src/uproot/interpretation/known_forth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/known_forth/__init__.py -------------------------------------------------------------------------------- /src/uproot/interpretation/known_forth/atlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/known_forth/atlas.py -------------------------------------------------------------------------------- /src/uproot/interpretation/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/library.py -------------------------------------------------------------------------------- /src/uproot/interpretation/numerical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/numerical.py -------------------------------------------------------------------------------- /src/uproot/interpretation/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/objects.py -------------------------------------------------------------------------------- /src/uproot/interpretation/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/interpretation/strings.py -------------------------------------------------------------------------------- /src/uproot/language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/language/__init__.py -------------------------------------------------------------------------------- /src/uproot/language/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/language/python.py -------------------------------------------------------------------------------- /src/uproot/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/model.py -------------------------------------------------------------------------------- /src/uproot/models/RNTuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/RNTuple.py -------------------------------------------------------------------------------- /src/uproot/models/TArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TArray.py -------------------------------------------------------------------------------- /src/uproot/models/TAtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TAtt.py -------------------------------------------------------------------------------- /src/uproot/models/TBasket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TBasket.py -------------------------------------------------------------------------------- /src/uproot/models/TBranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TBranch.py -------------------------------------------------------------------------------- /src/uproot/models/TClonesArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TClonesArray.py -------------------------------------------------------------------------------- /src/uproot/models/TDatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TDatime.py -------------------------------------------------------------------------------- /src/uproot/models/TGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TGraph.py -------------------------------------------------------------------------------- /src/uproot/models/TH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TH.py -------------------------------------------------------------------------------- /src/uproot/models/THashList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/THashList.py -------------------------------------------------------------------------------- /src/uproot/models/TLeaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TLeaf.py -------------------------------------------------------------------------------- /src/uproot/models/TList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TList.py -------------------------------------------------------------------------------- /src/uproot/models/TMatrixT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TMatrixT.py -------------------------------------------------------------------------------- /src/uproot/models/TNamed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TNamed.py -------------------------------------------------------------------------------- /src/uproot/models/TObjArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TObjArray.py -------------------------------------------------------------------------------- /src/uproot/models/TObjString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TObjString.py -------------------------------------------------------------------------------- /src/uproot/models/TObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TObject.py -------------------------------------------------------------------------------- /src/uproot/models/TRef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TRef.py -------------------------------------------------------------------------------- /src/uproot/models/TString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TString.py -------------------------------------------------------------------------------- /src/uproot/models/TTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TTable.py -------------------------------------------------------------------------------- /src/uproot/models/TTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TTime.py -------------------------------------------------------------------------------- /src/uproot/models/TTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/TTree.py -------------------------------------------------------------------------------- /src/uproot/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/models/__init__.py -------------------------------------------------------------------------------- /src/uproot/pyroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/pyroot.py -------------------------------------------------------------------------------- /src/uproot/reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/reading.py -------------------------------------------------------------------------------- /src/uproot/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/serialization.py -------------------------------------------------------------------------------- /src/uproot/sink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/sink/__init__.py -------------------------------------------------------------------------------- /src/uproot/sink/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/sink/file.py -------------------------------------------------------------------------------- /src/uproot/source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/__init__.py -------------------------------------------------------------------------------- /src/uproot/source/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/chunk.py -------------------------------------------------------------------------------- /src/uproot/source/coalesce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/coalesce.py -------------------------------------------------------------------------------- /src/uproot/source/cufile_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/cufile_interface.py -------------------------------------------------------------------------------- /src/uproot/source/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/cursor.py -------------------------------------------------------------------------------- /src/uproot/source/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/file.py -------------------------------------------------------------------------------- /src/uproot/source/fsspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/fsspec.py -------------------------------------------------------------------------------- /src/uproot/source/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/futures.py -------------------------------------------------------------------------------- /src/uproot/source/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/http.py -------------------------------------------------------------------------------- /src/uproot/source/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/object.py -------------------------------------------------------------------------------- /src/uproot/source/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/s3.py -------------------------------------------------------------------------------- /src/uproot/source/xrootd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/source/xrootd.py -------------------------------------------------------------------------------- /src/uproot/streamers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/streamers.py -------------------------------------------------------------------------------- /src/uproot/writing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/__init__.py -------------------------------------------------------------------------------- /src/uproot/writing/_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/_cascade.py -------------------------------------------------------------------------------- /src/uproot/writing/_cascadentuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/_cascadentuple.py -------------------------------------------------------------------------------- /src/uproot/writing/_cascadetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/_cascadetree.py -------------------------------------------------------------------------------- /src/uproot/writing/_dask_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/_dask_write.py -------------------------------------------------------------------------------- /src/uproot/writing/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/identify.py -------------------------------------------------------------------------------- /src/uproot/writing/interpret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/interpret.py -------------------------------------------------------------------------------- /src/uproot/writing/writable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/src/uproot/writing/writable.py -------------------------------------------------------------------------------- /tests-cuda/test_0630_rntuple_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_0630_rntuple_basics.py -------------------------------------------------------------------------------- /tests-cuda/test_0662_rntuple_stl_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_0662_rntuple_stl_containers.py -------------------------------------------------------------------------------- /tests-cuda/test_0962_rntuple_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_0962_rntuple_update.py -------------------------------------------------------------------------------- /tests-cuda/test_1159_rntuple_cluster_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1159_rntuple_cluster_groups.py -------------------------------------------------------------------------------- /tests-cuda/test_1191_rntuple_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1191_rntuple_fixes.py -------------------------------------------------------------------------------- /tests-cuda/test_1223_more_rntuple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1223_more_rntuple_types.py -------------------------------------------------------------------------------- /tests-cuda/test_1250_rntuple_improvements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1250_rntuple_improvements.py -------------------------------------------------------------------------------- /tests-cuda/test_1285_rntuple_multicluster_concatenation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1285_rntuple_multicluster_concatenation.py -------------------------------------------------------------------------------- /tests-cuda/test_1347_rntuple_floats_suppressed_cols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1347_rntuple_floats_suppressed_cols.py -------------------------------------------------------------------------------- /tests-cuda/test_1411_rntuple_physlite_ATLAS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-cuda/test_1411_rntuple_physlite_ATLAS.py -------------------------------------------------------------------------------- /tests-wasm/__init__.py: -------------------------------------------------------------------------------- 1 | # BSD 3-Clause License; see https://github.com/scikit-hep/uproot5/blob/main/LICENSE 2 | -------------------------------------------------------------------------------- /tests-wasm/test_1272_basic_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-wasm/test_1272_basic_functionality.py -------------------------------------------------------------------------------- /tests-wasm/test_1365_awkwardforth_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-wasm/test_1365_awkwardforth_reading.py -------------------------------------------------------------------------------- /tests-wasm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests-wasm/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # BSD 3-Clause License; see https://github.com/scikit-hep/uproot5/blob/main/LICENSE 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/samples/h_dynamic.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/samples/h_dynamic.pkl -------------------------------------------------------------------------------- /tests/test_0001_source_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0001_source_class.py -------------------------------------------------------------------------------- /tests/test_0006_notify_when_downloaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0006_notify_when_downloaded.py -------------------------------------------------------------------------------- /tests/test_0007_single_chunk_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0007_single_chunk_interface.py -------------------------------------------------------------------------------- /tests/test_0008_start_interpretation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0008_start_interpretation.py -------------------------------------------------------------------------------- /tests/test_0009_nested_directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0009_nested_directories.py -------------------------------------------------------------------------------- /tests/test_0010_start_streamers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0010_start_streamers.py -------------------------------------------------------------------------------- /tests/test_0011_generate_classes_from_streamers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0011_generate_classes_from_streamers.py -------------------------------------------------------------------------------- /tests/test_0013_rntuple_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0013_rntuple_anchor.py -------------------------------------------------------------------------------- /tests/test_0014_all_ttree_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0014_all_ttree_versions.py -------------------------------------------------------------------------------- /tests/test_0016_interpretations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0016_interpretations.py -------------------------------------------------------------------------------- /tests/test_0017_multi_basket_multi_branch_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0017_multi_basket_multi_branch_fetch.py -------------------------------------------------------------------------------- /tests/test_0018_array_fetching_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0018_array_fetching_interface.py -------------------------------------------------------------------------------- /tests/test_0022_number_of_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0022_number_of_branches.py -------------------------------------------------------------------------------- /tests/test_0023_more_interpretations_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0023_more_interpretations_1.py -------------------------------------------------------------------------------- /tests/test_0023_ttree_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0023_ttree_versions.py -------------------------------------------------------------------------------- /tests/test_0028_fallback_to_read_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0028_fallback_to_read_streamer.py -------------------------------------------------------------------------------- /tests/test_0029_more_string_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0029_more_string_types.py -------------------------------------------------------------------------------- /tests/test_0031_test_stl_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0031_test_stl_containers.py -------------------------------------------------------------------------------- /tests/test_0033_more_interpretations_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0033_more_interpretations_2.py -------------------------------------------------------------------------------- /tests/test_0034_generic_objects_in_ttrees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0034_generic_objects_in_ttrees.py -------------------------------------------------------------------------------- /tests/test_0035_datatype_generality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0035_datatype_generality.py -------------------------------------------------------------------------------- /tests/test_0038_memberwise_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0038_memberwise_serialization.py -------------------------------------------------------------------------------- /tests/test_0043_iterate_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0043_iterate_function.py -------------------------------------------------------------------------------- /tests/test_0044_concatenate_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0044_concatenate_function.py -------------------------------------------------------------------------------- /tests/test_0046_histograms_bh_hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0046_histograms_bh_hist.py -------------------------------------------------------------------------------- /tests/test_0053_parents_should_not_be_bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0053_parents_should_not_be_bases.py -------------------------------------------------------------------------------- /tests/test_0058_detach_model_objects_from_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0058_detach_model_objects_from_files.py -------------------------------------------------------------------------------- /tests/test_0066_fix_http_fallback_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0066_fix_http_fallback_freeze.py -------------------------------------------------------------------------------- /tests/test_0067_common_entry_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0067_common_entry_offsets.py -------------------------------------------------------------------------------- /tests/test_0081_dont_parse_colons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0081_dont_parse_colons.py -------------------------------------------------------------------------------- /tests/test_0087_memberwise_splitting_not_implemented_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0087_memberwise_splitting_not_implemented_messages.py -------------------------------------------------------------------------------- /tests/test_0088_read_with_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0088_read_with_http.py -------------------------------------------------------------------------------- /tests/test_0099_read_from_file_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0099_read_from_file_object.py -------------------------------------------------------------------------------- /tests/test_0112_fix_pandas_with_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0112_fix_pandas_with_cut.py -------------------------------------------------------------------------------- /tests/test_0118_fix_name_fetch_again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0118_fix_name_fetch_again.py -------------------------------------------------------------------------------- /tests/test_0123_atlas_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0123_atlas_issues.py -------------------------------------------------------------------------------- /tests/test_0126_turn_unknown_emptyarrays_into_known_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0126_turn_unknown_emptyarrays_into_known_types.py -------------------------------------------------------------------------------- /tests/test_0167_use_the_common_histogram_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0167_use_the_common_histogram_interface.py -------------------------------------------------------------------------------- /tests/test_0172_allow_allocators_in_vector_typenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0172_allow_allocators_in_vector_typenames.py -------------------------------------------------------------------------------- /tests/test_0173_empty_and_multiprocessing_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0173_empty_and_multiprocessing_bugs.py -------------------------------------------------------------------------------- /tests/test_0182_complain_about_missing_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0182_complain_about_missing_files.py -------------------------------------------------------------------------------- /tests/test_0194_fix_lost_cuts_in_iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0194_fix_lost_cuts_in_iterate.py -------------------------------------------------------------------------------- /tests/test_0220_contiguous_byte_ranges_in_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0220_contiguous_byte_ranges_in_http.py -------------------------------------------------------------------------------- /tests/test_0228_read_TProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0228_read_TProfiles.py -------------------------------------------------------------------------------- /tests/test_0240_read_TGraphAsymmErrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0240_read_TGraphAsymmErrors.py -------------------------------------------------------------------------------- /tests/test_0278_specializations_for_TParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0278_specializations_for_TParameter.py -------------------------------------------------------------------------------- /tests/test_0302_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0302_pickle.py -------------------------------------------------------------------------------- /tests/test_0303_empty_jagged_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0303_empty_jagged_array.py -------------------------------------------------------------------------------- /tests/test_0320_start_working_on_ROOT_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0320_start_working_on_ROOT_writing.py -------------------------------------------------------------------------------- /tests/test_0322_writablefile_infrastructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0322_writablefile_infrastructure.py -------------------------------------------------------------------------------- /tests/test_0329_update_existing_root_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0329_update_existing_root_files.py -------------------------------------------------------------------------------- /tests/test_0335_empty_ttree_division_by_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0335_empty_ttree_division_by_zero.py -------------------------------------------------------------------------------- /tests/test_0341_manipulate_streamer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0341_manipulate_streamer_info.py -------------------------------------------------------------------------------- /tests/test_0344_writabledirectory_can_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0344_writabledirectory_can_read.py -------------------------------------------------------------------------------- /tests/test_0345_bulk_copy_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0345_bulk_copy_method.py -------------------------------------------------------------------------------- /tests/test_0349_write_TObjString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0349_write_TObjString.py -------------------------------------------------------------------------------- /tests/test_0350_read_RooCurve_RooHist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0350_read_RooCurve_RooHist.py -------------------------------------------------------------------------------- /tests/test_0351_write_TList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0351_write_TList.py -------------------------------------------------------------------------------- /tests/test_0352_write_THashList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0352_write_THashList.py -------------------------------------------------------------------------------- /tests/test_0384_move_behavior_of_and_fix_383.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0384_move_behavior_of_and_fix_383.py -------------------------------------------------------------------------------- /tests/test_0398_dimensions_in_leaflist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0398_dimensions_in_leaflist.py -------------------------------------------------------------------------------- /tests/test_0405_write_a_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0405_write_a_histogram.py -------------------------------------------------------------------------------- /tests/test_0406_write_a_ttree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0406_write_a_ttree.py -------------------------------------------------------------------------------- /tests/test_0407_read_TDatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0407_read_TDatime.py -------------------------------------------------------------------------------- /tests/test_0412_write_multidimensional_numpy_to_ttree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0412_write_multidimensional_numpy_to_ttree.py -------------------------------------------------------------------------------- /tests/test_0414_write_jagged_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0414_write_jagged_arrays.py -------------------------------------------------------------------------------- /tests/test_0416_writing_compressed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0416_writing_compressed_data.py -------------------------------------------------------------------------------- /tests/test_0418_read_TTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0418_read_TTable.py -------------------------------------------------------------------------------- /tests/test_0420_pyroot_uproot_interoperability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0420_pyroot_uproot_interoperability.py -------------------------------------------------------------------------------- /tests/test_0422_hist_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0422_hist_integration.py -------------------------------------------------------------------------------- /tests/test_0430_global_index_for_tuples_of_DataFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0430_global_index_for_tuples_of_DataFrames.py -------------------------------------------------------------------------------- /tests/test_0438_TClonesArray_is_not_AsGrouped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0438_TClonesArray_is_not_AsGrouped.py -------------------------------------------------------------------------------- /tests/test_0439_check_awkward_before_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0439_check_awkward_before_numpy.py -------------------------------------------------------------------------------- /tests/test_0442_regular_TClonesArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0442_regular_TClonesArray.py -------------------------------------------------------------------------------- /tests/test_0472_tstreamerinfo_for_ttree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0472_tstreamerinfo_for_ttree.py -------------------------------------------------------------------------------- /tests/test_0475_remember_to_update_freesegments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0475_remember_to_update_freesegments.py -------------------------------------------------------------------------------- /tests/test_0484_manually_add_model_for_TMatrixTSym_double_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0484_manually_add_model_for_TMatrixTSym_double_.py -------------------------------------------------------------------------------- /tests/test_0487_implement_asdtypeinplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0487_implement_asdtypeinplace.py -------------------------------------------------------------------------------- /tests/test_0498_create_leaf_branch_in_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0498_create_leaf_branch_in_extend.py -------------------------------------------------------------------------------- /tests/test_0519_remove_memmap_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0519_remove_memmap_copy.py -------------------------------------------------------------------------------- /tests/test_0520_dynamic_classes_cant_be_abc_subclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0520_dynamic_classes_cant_be_abc_subclasses.py -------------------------------------------------------------------------------- /tests/test_0569_fBits_is_4_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0569_fBits_is_4_bytes.py -------------------------------------------------------------------------------- /tests/test_0576_unicode_in_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0576_unicode_in_names.py -------------------------------------------------------------------------------- /tests/test_0578_dask_for_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0578_dask_for_numpy.py -------------------------------------------------------------------------------- /tests/test_0580_round_trip_for_no_flow_histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0580_round_trip_for_no_flow_histograms.py -------------------------------------------------------------------------------- /tests/test_0589_explicitly_interpret_RVec_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0589_explicitly_interpret_RVec_type.py -------------------------------------------------------------------------------- /tests/test_0603_dask_delayed_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0603_dask_delayed_open.py -------------------------------------------------------------------------------- /tests/test_0609_num_enteries_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0609_num_enteries_func.py -------------------------------------------------------------------------------- /tests/test_0610_awkward_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0610_awkward_form.py -------------------------------------------------------------------------------- /tests/test_0630_rntuple_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0630_rntuple_basics.py -------------------------------------------------------------------------------- /tests/test_0637_setup_tests_for_AwkwardForth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0637_setup_tests_for_AwkwardForth.py -------------------------------------------------------------------------------- /tests/test_0643_reading_vector_pair_TLorentzVector_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0643_reading_vector_pair_TLorentzVector_int.py -------------------------------------------------------------------------------- /tests/test_0651_implement_transformed_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0651_implement_transformed_axis.py -------------------------------------------------------------------------------- /tests/test_0652_dask_for_awkward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0652_dask_for_awkward.py -------------------------------------------------------------------------------- /tests/test_0662_rntuple_stl_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0662_rntuple_stl_containers.py -------------------------------------------------------------------------------- /tests/test_0692_fsspec_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0692_fsspec_reading.py -------------------------------------------------------------------------------- /tests/test_0692_fsspec_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0692_fsspec_writing.py -------------------------------------------------------------------------------- /tests/test_0700_dask_empty_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0700_dask_empty_arrays.py -------------------------------------------------------------------------------- /tests/test_0705_rntuple_writing_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0705_rntuple_writing_metadata.py -------------------------------------------------------------------------------- /tests/test_0750_avoid_empty_TBasket_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0750_avoid_empty_TBasket_issue.py -------------------------------------------------------------------------------- /tests/test_0755_dask_awkward_column_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0755_dask_awkward_column_projection.py -------------------------------------------------------------------------------- /tests/test_0791_protect_uproot_project_columns_from_dask_node_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0791_protect_uproot_project_columns_from_dask_node_names.py -------------------------------------------------------------------------------- /tests/test_0798_DAOD_PHYSLITE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0798_DAOD_PHYSLITE.py -------------------------------------------------------------------------------- /tests/test_0808_fix_awkward_form_for_AsStridedObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0808_fix_awkward_form_for_AsStridedObjects.py -------------------------------------------------------------------------------- /tests/test_0816_separate_AwkwardForth_machines_by_TBranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0816_separate_AwkwardForth_machines_by_TBranch.py -------------------------------------------------------------------------------- /tests/test_0832_ak_add_doc_should_also_add_to_typetracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0832_ak_add_doc_should_also_add_to_typetracer.py -------------------------------------------------------------------------------- /tests/test_0840_support_tleafG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0840_support_tleafG.py -------------------------------------------------------------------------------- /tests/test_0841_fix_814.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0841_fix_814.py -------------------------------------------------------------------------------- /tests/test_0844_fix_delete_hist_from_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0844_fix_delete_hist_from_root.py -------------------------------------------------------------------------------- /tests/test_0852_fix_strided_interp_extra_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0852_fix_strided_interp_extra_offsets.py -------------------------------------------------------------------------------- /tests/test_0870_writing_arrays_of_type_unknown_fix_822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0870_writing_arrays_of_type_unknown_fix_822.py -------------------------------------------------------------------------------- /tests/test_0876_uproot_dask_blind_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0876_uproot_dask_blind_steps.py -------------------------------------------------------------------------------- /tests/test_0886_fix_awkward_form_breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0886_fix_awkward_form_breadcrumbs.py -------------------------------------------------------------------------------- /tests/test_0910_fix_906_members_non_numerical_branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0910_fix_906_members_non_numerical_branches.py -------------------------------------------------------------------------------- /tests/test_0911_fix_interp_array_non_numerical_objs_issue_880.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0911_fix_interp_array_non_numerical_objs_issue_880.py -------------------------------------------------------------------------------- /tests/test_0912_fix_pandas_and_double_nested_vectors_issue_885.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0912_fix_pandas_and_double_nested_vectors_issue_885.py -------------------------------------------------------------------------------- /tests/test_0916_read_from_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0916_read_from_s3.py -------------------------------------------------------------------------------- /tests/test_0927_dont_assume_uproot_in_global_scope_in_TPython_Eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0927_dont_assume_uproot_in_global_scope_in_TPython_Eval.py -------------------------------------------------------------------------------- /tests/test_0930_expressions_in_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0930_expressions_in_pandas.py -------------------------------------------------------------------------------- /tests/test_0940_feat_add_TLeafC_string_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0940_feat_add_TLeafC_string_support.py -------------------------------------------------------------------------------- /tests/test_0962_rntuple_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0962_rntuple_update.py -------------------------------------------------------------------------------- /tests/test_0965_inverted_axes_variances_hist_888.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0965_inverted_axes_variances_hist_888.py -------------------------------------------------------------------------------- /tests/test_0976_path_object_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_0976_path_object_split.py -------------------------------------------------------------------------------- /tests/test_1000-write-TProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1000-write-TProfiles.py -------------------------------------------------------------------------------- /tests/test_1043_const_std_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1043_const_std_string.py -------------------------------------------------------------------------------- /tests/test_1058_dask_awkward_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1058_dask_awkward_report.py -------------------------------------------------------------------------------- /tests/test_1063_dask_distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1063_dask_distributed.py -------------------------------------------------------------------------------- /tests/test_1070_pandas_dataframe_building_performance_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1070_pandas_dataframe_building_performance_fix.py -------------------------------------------------------------------------------- /tests/test_1085_dask_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1085_dask_write.py -------------------------------------------------------------------------------- /tests/test_1102_any_locks_in_models_must_be_transient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1102_any_locks_in_models_must_be_transient.py -------------------------------------------------------------------------------- /tests/test_1114_fix_attempt_to_concatenate_numpy_with_awkward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1114_fix_attempt_to_concatenate_numpy_with_awkward.py -------------------------------------------------------------------------------- /tests/test_1120_check_decompression_executor_pass_for_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1120_check_decompression_executor_pass_for_dask.py -------------------------------------------------------------------------------- /tests/test_1127_fix_allow_colon_in_key_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1127_fix_allow_colon_in_key_names.py -------------------------------------------------------------------------------- /tests/test_1128_TGraph_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1128_TGraph_writing.py -------------------------------------------------------------------------------- /tests/test_1146_split_ranges_for_large_files_over_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1146_split_ranges_for_large_files_over_http.py -------------------------------------------------------------------------------- /tests/test_1154_classof_using_relative_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1154_classof_using_relative_path.py -------------------------------------------------------------------------------- /tests/test_1159_rntuple_cluster_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1159_rntuple_cluster_groups.py -------------------------------------------------------------------------------- /tests/test_1160_std_string_in_TDirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1160_std_string_in_TDirectory.py -------------------------------------------------------------------------------- /tests/test_1180_read_free_floating_vector_issue_1179.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1180_read_free_floating_vector_issue_1179.py -------------------------------------------------------------------------------- /tests/test_1181_support_for_stl_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1181_support_for_stl_list.py -------------------------------------------------------------------------------- /tests/test_1182_add_support_for_bitset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1182_add_support_for_bitset.py -------------------------------------------------------------------------------- /tests/test_1183_ttime_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1183_ttime_custom.py -------------------------------------------------------------------------------- /tests/test_1186_dtype_might_raise_ValueError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1186_dtype_might_raise_ValueError.py -------------------------------------------------------------------------------- /tests/test_1189_dask_failing_on_duplicate_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1189_dask_failing_on_duplicate_keys.py -------------------------------------------------------------------------------- /tests/test_1191_rntuple_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1191_rntuple_fixes.py -------------------------------------------------------------------------------- /tests/test_1198_coalesce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1198_coalesce.py -------------------------------------------------------------------------------- /tests/test_1207_fix_title_of_TBranch_with_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1207_fix_title_of_TBranch_with_counter.py -------------------------------------------------------------------------------- /tests/test_1212_dont_let_update_mess_up_file_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1212_dont_let_update_mess_up_file_version.py -------------------------------------------------------------------------------- /tests/test_1221_AwkwardForth_bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1221_AwkwardForth_bug.py -------------------------------------------------------------------------------- /tests/test_1223_more_rntuple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1223_more_rntuple_types.py -------------------------------------------------------------------------------- /tests/test_1229_const_in_typename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1229_const_in_typename.py -------------------------------------------------------------------------------- /tests/test_1250_rntuple_improvements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1250_rntuple_improvements.py -------------------------------------------------------------------------------- /tests/test_1254_test_threadpool_executor_for_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1254_test_threadpool_executor_for_dask.py -------------------------------------------------------------------------------- /tests/test_1264_write_NumPy_array_of_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1264_write_NumPy_array_of_strings.py -------------------------------------------------------------------------------- /tests/test_1275_fix_TStreamerLoop_code_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1275_fix_TStreamerLoop_code_generation.py -------------------------------------------------------------------------------- /tests/test_1282_add_known_forth_for_atlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1282_add_known_forth_for_atlas.py -------------------------------------------------------------------------------- /tests/test_1285_rntuple_multicluster_concatenation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1285_rntuple_multicluster_concatenation.py -------------------------------------------------------------------------------- /tests/test_1318_dont_compare_big_endian_in_awkward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1318_dont_compare_big_endian_in_awkward.py -------------------------------------------------------------------------------- /tests/test_1321_pandas_changed_api_again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1321_pandas_changed_api_again.py -------------------------------------------------------------------------------- /tests/test_1347_rntuple_floats_suppressed_cols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1347_rntuple_floats_suppressed_cols.py -------------------------------------------------------------------------------- /tests/test_1356_basic_rntuple_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1356_basic_rntuple_writing.py -------------------------------------------------------------------------------- /tests/test_1375_extend_ak_add_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1375_extend_ak_add_doc.py -------------------------------------------------------------------------------- /tests/test_1393_TTree_virtual_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1393_TTree_virtual_arrays.py -------------------------------------------------------------------------------- /tests/test_1395_rntuple_writing_lists_and_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1395_rntuple_writing_lists_and_structs.py -------------------------------------------------------------------------------- /tests/test_1406_improved_rntuple_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1406_improved_rntuple_methods.py -------------------------------------------------------------------------------- /tests/test_1411_rntuple_physlite_ATLAS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1411_rntuple_physlite_ATLAS.py -------------------------------------------------------------------------------- /tests/test_1412_rntuple_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1412_rntuple_dask.py -------------------------------------------------------------------------------- /tests/test_1465_ignorecase_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1465_ignorecase_extension.py -------------------------------------------------------------------------------- /tests/test_1467_rntuple_akform_construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1467_rntuple_akform_construction.py -------------------------------------------------------------------------------- /tests/test_1476_rntuple_jagged_subfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1476_rntuple_jagged_subfields.py -------------------------------------------------------------------------------- /tests/test_1477_custom_interpretation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1477_custom_interpretation.py -------------------------------------------------------------------------------- /tests/test_1492_rntuple_hidden_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1492_rntuple_hidden_keys.py -------------------------------------------------------------------------------- /tests/test_1496_rntuple_write_index_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scikit-hep/uproot5/HEAD/tests/test_1496_rntuple_write_index_arrays.py --------------------------------------------------------------------------------