├── .coveragerc ├── .github ├── actions │ ├── build-relstorage │ │ └── action.yml │ ├── config-cc │ │ └── action.yml │ ├── install-native-libs │ │ └── action.yml │ └── run-tests │ │ └── action.yml ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .landscape.yml ├── .pylintrc ├── .readthedocs.yml ├── .travis ├── docker.cnf ├── mysql.cmd ├── mysql.sh ├── postgres.cmd ├── postgres.sh ├── run_with_env.cmd ├── setup-cmysqlconnector.sh ├── setup-mysql.sh ├── setup-mysqlconnector.sh ├── setup-oracle.sh ├── setup-postgres.sh ├── setup-pymysql.sh └── zope_testrunner_gevent.py ├── BUILDOUT.rst ├── CHANGES.rst ├── COPYRIGHT.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── bootstrap.py ├── docs ├── .mocks │ ├── _pylibmc.py │ ├── cx_Oracle.py │ └── pylibmc.py ├── Makefile ├── cache-tracing.rst ├── changelog.rst ├── command-line-utilities.rst ├── conf.py ├── configuration-reference.rst ├── configure-application.rst ├── configure-database.rst ├── contents.rst ├── db-specific-options.rst ├── developing.rst ├── developing │ ├── caching.rst │ ├── pack_policy.png │ ├── packing.rst │ └── running.rst ├── faq.rst ├── generate_rst.py ├── getting-started.rst ├── index.rst ├── install.rst ├── internals.rst ├── migration.rst ├── migration │ ├── migrate-to-1.0.rst │ ├── migrate-to-1.1.1.rst │ ├── migrate-to-1.1.2.rst │ ├── migrate-to-1.1.rst │ ├── migrate-to-1.4.rst │ ├── migrate-to-1.5.rst │ └── migrate-to-3.0.rst ├── mysql │ ├── index.rst │ ├── install.rst │ ├── options.rst │ └── setup.rst ├── old_history.rst ├── oracle │ ├── index.rst │ ├── install.rst │ ├── options.rst │ └── setup.rst ├── perf-20.png ├── perf-rs14.png ├── perf-rs20-no-mem.png ├── perf-rs20-rs16.png ├── perf-rs20pypy.png ├── perf-rs21v20-c2.png ├── perf-rs21v20-c6-n100-s256.png ├── performance.rst ├── postgresql │ ├── index.rst │ ├── install.rst │ ├── options.rst │ ├── pgbouncer.rst │ └── setup.rst ├── relstorage-options.rst ├── sqlite3 │ ├── faq.rst │ ├── faq_sql_add_objects.png │ ├── faq_sql_read_cold_objects.png │ ├── faq_sql_update_objects.png │ ├── faq_sql_write_read_objects.png │ ├── index.rst │ ├── install.rst │ ├── options.rst │ └── setup.rst ├── supported-databases.rst ├── things-to-know.rst ├── zodbconvert.rst ├── zodbpack.rst └── zodburi.rst ├── include ├── LICENSE_1_0.txt ├── README.rst └── boost │ ├── assert.hpp │ ├── assert │ └── source_location.hpp │ ├── config.hpp │ ├── config │ ├── compiler │ │ ├── borland.hpp │ │ ├── clang.hpp │ │ ├── clang_version.hpp │ │ ├── codegear.hpp │ │ ├── comeau.hpp │ │ ├── common_edg.hpp │ │ ├── compaq_cxx.hpp │ │ ├── cray.hpp │ │ ├── diab.hpp │ │ ├── digitalmars.hpp │ │ ├── gcc.hpp │ │ ├── gcc_xml.hpp │ │ ├── greenhills.hpp │ │ ├── hp_acc.hpp │ │ ├── intel.hpp │ │ ├── kai.hpp │ │ ├── metrowerks.hpp │ │ ├── mpw.hpp │ │ ├── nvcc.hpp │ │ ├── pathscale.hpp │ │ ├── pgi.hpp │ │ ├── sgi_mipspro.hpp │ │ ├── sunpro_cc.hpp │ │ ├── vacpp.hpp │ │ ├── visualc.hpp │ │ ├── xlcpp.hpp │ │ └── xlcpp_zos.hpp │ ├── detail │ │ ├── cxx_composite.hpp │ │ ├── posix_features.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ └── suffix.hpp │ ├── header_deprecated.hpp │ ├── helper_macros.hpp │ ├── no_tr1 │ │ └── cmath.hpp │ ├── platform │ │ ├── aix.hpp │ │ ├── bsd.hpp │ │ ├── cloudabi.hpp │ │ ├── cygwin.hpp │ │ ├── haiku.hpp │ │ ├── hpux.hpp │ │ ├── linux.hpp │ │ ├── macos.hpp │ │ ├── solaris.hpp │ │ └── win32.hpp │ ├── pragma_message.hpp │ ├── stdlib │ │ ├── dinkumware.hpp │ │ ├── libcpp.hpp │ │ └── libstdcpp3.hpp │ ├── user.hpp │ ├── warning_disable.hpp │ └── workaround.hpp │ ├── container_hash │ ├── detail │ │ ├── float_functions.hpp │ │ ├── hash_float.hpp │ │ ├── hash_mix.hpp │ │ ├── hash_range.hpp │ │ ├── hash_tuple_like.hpp │ │ ├── limits.hpp │ │ ├── mulx.hpp │ │ └── requires_cxx11.hpp │ ├── extensions.hpp │ ├── hash.hpp │ ├── hash_fwd.hpp │ ├── is_contiguous_range.hpp │ ├── is_described_class.hpp │ ├── is_range.hpp │ ├── is_tuple_like.hpp │ └── is_unordered_range.hpp │ ├── core │ ├── addressof.hpp │ ├── allocator_access.hpp │ ├── allocator_traits.hpp │ ├── bit.hpp │ ├── empty_value.hpp │ ├── enable_if.hpp │ ├── explicit_operator_bool.hpp │ ├── no_exceptions_support.hpp │ ├── pointer_traits.hpp │ ├── ref.hpp │ └── swap.hpp │ ├── cstdint.hpp │ ├── current_function.hpp │ ├── describe │ ├── bases.hpp │ ├── class.hpp │ ├── descriptor_by_name.hpp │ ├── descriptor_by_pointer.hpp │ ├── detail │ │ ├── bases.hpp │ │ ├── compute_base_modifiers.hpp │ │ ├── config.hpp │ │ ├── cx_streq.hpp │ │ ├── list.hpp │ │ ├── members.hpp │ │ ├── pp_for_each.hpp │ │ ├── pp_utilities.hpp │ │ └── void_t.hpp │ ├── enum.hpp │ ├── enum_from_string.hpp │ ├── enum_to_string.hpp │ ├── enumerators.hpp │ ├── members.hpp │ ├── modifier_description.hpp │ ├── modifiers.hpp │ └── operators.hpp │ ├── detail │ ├── container_fwd.hpp │ ├── select_type.hpp │ └── workaround.hpp │ ├── exception │ └── exception.hpp │ ├── functional │ ├── hash.hpp │ └── hash_fwd.hpp │ ├── integer │ └── static_log2.hpp │ ├── integer_fwd.hpp │ ├── intrusive │ ├── any_hook.hpp │ ├── avl_set.hpp │ ├── avl_set_hook.hpp │ ├── avltree.hpp │ ├── avltree_algorithms.hpp │ ├── bs_set.hpp │ ├── bs_set_hook.hpp │ ├── bstree.hpp │ ├── bstree_algorithms.hpp │ ├── circular_list_algorithms.hpp │ ├── circular_slist_algorithms.hpp │ ├── derivation_value_traits.hpp │ ├── detail │ │ ├── algo_type.hpp │ │ ├── algorithm.hpp │ │ ├── any_node_and_algorithms.hpp │ │ ├── array_initializer.hpp │ │ ├── assert.hpp │ │ ├── avltree_node.hpp │ │ ├── bstree_algorithms_base.hpp │ │ ├── common_slist_algorithms.hpp │ │ ├── config_begin.hpp │ │ ├── config_end.hpp │ │ ├── default_header_holder.hpp │ │ ├── ebo_functor_holder.hpp │ │ ├── empty_node_checker.hpp │ │ ├── equal_to_value.hpp │ │ ├── exception_disposer.hpp │ │ ├── function_detector.hpp │ │ ├── generic_hook.hpp │ │ ├── get_value_traits.hpp │ │ ├── has_member_function_callable_with.hpp │ │ ├── hash_combine.hpp │ │ ├── hashtable_node.hpp │ │ ├── hook_traits.hpp │ │ ├── iiterator.hpp │ │ ├── is_stateful_value_traits.hpp │ │ ├── iterator.hpp │ │ ├── key_nodeptr_comp.hpp │ │ ├── list_iterator.hpp │ │ ├── list_node.hpp │ │ ├── math.hpp │ │ ├── minimal_less_equal_header.hpp │ │ ├── minimal_pair_header.hpp │ │ ├── mpl.hpp │ │ ├── node_cloner_disposer.hpp │ │ ├── node_holder.hpp │ │ ├── node_to_value.hpp │ │ ├── parent_from_member.hpp │ │ ├── rbtree_node.hpp │ │ ├── reverse_iterator.hpp │ │ ├── simple_disposers.hpp │ │ ├── size_holder.hpp │ │ ├── slist_iterator.hpp │ │ ├── slist_node.hpp │ │ ├── std_fwd.hpp │ │ ├── transform_iterator.hpp │ │ ├── tree_iterator.hpp │ │ ├── tree_node.hpp │ │ ├── tree_value_compare.hpp │ │ ├── twin.hpp │ │ ├── uncast.hpp │ │ ├── value_functors.hpp │ │ └── workaround.hpp │ ├── hashtable.hpp │ ├── intrusive_fwd.hpp │ ├── linear_slist_algorithms.hpp │ ├── link_mode.hpp │ ├── list.hpp │ ├── list_hook.hpp │ ├── member_value_traits.hpp │ ├── options.hpp │ ├── pack_options.hpp │ ├── parent_from_member.hpp │ ├── pointer_plus_bits.hpp │ ├── pointer_rebind.hpp │ ├── pointer_traits.hpp │ ├── priority_compare.hpp │ ├── rbtree.hpp │ ├── rbtree_algorithms.hpp │ ├── set.hpp │ ├── set_hook.hpp │ ├── sg_set.hpp │ ├── sgtree.hpp │ ├── sgtree_algorithms.hpp │ ├── slist.hpp │ ├── slist_hook.hpp │ ├── splay_set.hpp │ ├── splaytree.hpp │ ├── splaytree_algorithms.hpp │ ├── treap.hpp │ ├── treap_algorithms.hpp │ ├── treap_set.hpp │ ├── trivial_value_traits.hpp │ ├── unordered_set.hpp │ └── unordered_set_hook.hpp │ ├── limits.hpp │ ├── move │ ├── adl_move_swap.hpp │ ├── algo │ │ └── move.hpp │ ├── algorithm.hpp │ ├── core.hpp │ ├── detail │ │ ├── addressof.hpp │ │ ├── config_begin.hpp │ │ ├── config_end.hpp │ │ ├── force_ptr.hpp │ │ ├── iterator_to_raw_pointer.hpp │ │ ├── iterator_traits.hpp │ │ ├── meta_utils.hpp │ │ ├── meta_utils_core.hpp │ │ ├── placement_new.hpp │ │ ├── pointer_element.hpp │ │ ├── reverse_iterator.hpp │ │ ├── std_ns_begin.hpp │ │ ├── std_ns_end.hpp │ │ ├── to_raw_pointer.hpp │ │ ├── type_traits.hpp │ │ └── workaround.hpp │ ├── iterator.hpp │ ├── move.hpp │ ├── traits.hpp │ ├── utility.hpp │ └── utility_core.hpp │ ├── mp11 │ ├── algorithm.hpp │ ├── bind.hpp │ ├── detail │ │ ├── config.hpp │ │ ├── mp_append.hpp │ │ ├── mp_copy_if.hpp │ │ ├── mp_count.hpp │ │ ├── mp_defer.hpp │ │ ├── mp_fold.hpp │ │ ├── mp_front.hpp │ │ ├── mp_is_list.hpp │ │ ├── mp_is_value_list.hpp │ │ ├── mp_list.hpp │ │ ├── mp_list_v.hpp │ │ ├── mp_map_find.hpp │ │ ├── mp_min_element.hpp │ │ ├── mp_plus.hpp │ │ ├── mp_remove_if.hpp │ │ ├── mp_rename.hpp │ │ ├── mp_value.hpp │ │ ├── mp_void.hpp │ │ ├── mp_with_index.hpp │ │ └── mpl_common.hpp │ ├── function.hpp │ ├── integer_sequence.hpp │ ├── integral.hpp │ ├── list.hpp │ ├── set.hpp │ ├── utility.hpp │ └── version.hpp │ ├── pointer_to_other.hpp │ ├── predef.h │ ├── predef │ ├── architecture.h │ ├── architecture │ │ ├── alpha.h │ │ ├── arm.h │ │ ├── blackfin.h │ │ ├── convex.h │ │ ├── e2k.h │ │ ├── ia64.h │ │ ├── loongarch.h │ │ ├── m68k.h │ │ ├── mips.h │ │ ├── parisc.h │ │ ├── ppc.h │ │ ├── ptx.h │ │ ├── pyramid.h │ │ ├── riscv.h │ │ ├── rs6k.h │ │ ├── sparc.h │ │ ├── superh.h │ │ ├── sys370.h │ │ ├── sys390.h │ │ ├── x86.h │ │ ├── x86 │ │ │ ├── 32.h │ │ │ └── 64.h │ │ └── z.h │ ├── compiler.h │ ├── compiler │ │ ├── borland.h │ │ ├── clang.h │ │ ├── comeau.h │ │ ├── compaq.h │ │ ├── diab.h │ │ ├── digitalmars.h │ │ ├── dignus.h │ │ ├── edg.h │ │ ├── ekopath.h │ │ ├── gcc.h │ │ ├── gcc_xml.h │ │ ├── greenhills.h │ │ ├── hp_acc.h │ │ ├── iar.h │ │ ├── ibm.h │ │ ├── intel.h │ │ ├── kai.h │ │ ├── llvm.h │ │ ├── metaware.h │ │ ├── metrowerks.h │ │ ├── microtec.h │ │ ├── mpw.h │ │ ├── nvcc.h │ │ ├── palm.h │ │ ├── pgi.h │ │ ├── sgi_mipspro.h │ │ ├── sunpro.h │ │ ├── tendra.h │ │ ├── visualc.h │ │ └── watcom.h │ ├── detail │ │ ├── _cassert.h │ │ ├── _exception.h │ │ ├── comp_detected.h │ │ ├── os_detected.h │ │ ├── platform_detected.h │ │ ├── test.h │ │ └── test_def.h │ ├── hardware.h │ ├── hardware │ │ ├── simd.h │ │ └── simd │ │ │ ├── arm.h │ │ │ ├── arm │ │ │ └── versions.h │ │ │ ├── ppc.h │ │ │ ├── ppc │ │ │ └── versions.h │ │ │ ├── x86.h │ │ │ ├── x86 │ │ │ └── versions.h │ │ │ ├── x86_amd.h │ │ │ └── x86_amd │ │ │ └── versions.h │ ├── language.h │ ├── language │ │ ├── cuda.h │ │ ├── objc.h │ │ ├── stdc.h │ │ └── stdcpp.h │ ├── library.h │ ├── library │ │ ├── c.h │ │ ├── c │ │ │ ├── _prefix.h │ │ │ ├── cloudabi.h │ │ │ ├── gnu.h │ │ │ ├── uc.h │ │ │ ├── vms.h │ │ │ └── zos.h │ │ ├── std.h │ │ └── std │ │ │ ├── _prefix.h │ │ │ ├── cxx.h │ │ │ ├── dinkumware.h │ │ │ ├── libcomo.h │ │ │ ├── modena.h │ │ │ ├── msl.h │ │ │ ├── roguewave.h │ │ │ ├── sgi.h │ │ │ ├── stdcpp3.h │ │ │ ├── stlport.h │ │ │ └── vacpp.h │ ├── make.h │ ├── os.h │ ├── os │ │ ├── aix.h │ │ ├── amigaos.h │ │ ├── beos.h │ │ ├── bsd.h │ │ ├── bsd │ │ │ ├── bsdi.h │ │ │ ├── dragonfly.h │ │ │ ├── free.h │ │ │ ├── net.h │ │ │ └── open.h │ │ ├── cygwin.h │ │ ├── haiku.h │ │ ├── hpux.h │ │ ├── ios.h │ │ ├── irix.h │ │ ├── linux.h │ │ ├── macos.h │ │ ├── os400.h │ │ ├── qnxnto.h │ │ ├── solaris.h │ │ ├── unix.h │ │ ├── vms.h │ │ └── windows.h │ ├── other.h │ ├── other │ │ ├── endian.h │ │ ├── wordsize.h │ │ └── workaround.h │ ├── platform.h │ ├── platform │ │ ├── android.h │ │ ├── cloudabi.h │ │ ├── ios.h │ │ ├── mingw.h │ │ ├── mingw32.h │ │ ├── mingw64.h │ │ ├── windows_desktop.h │ │ ├── windows_phone.h │ │ ├── windows_runtime.h │ │ ├── windows_server.h │ │ ├── windows_store.h │ │ ├── windows_system.h │ │ └── windows_uwp.h │ ├── version.h │ └── version_number.h │ ├── preprocessor │ ├── arithmetic.hpp │ ├── arithmetic │ │ ├── add.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── div_base.hpp │ │ │ ├── is_1_number.hpp │ │ │ ├── is_maximum_number.hpp │ │ │ ├── is_minimum_number.hpp │ │ │ └── maximum_number.hpp │ │ ├── div.hpp │ │ ├── inc.hpp │ │ ├── limits │ │ │ ├── dec_1024.hpp │ │ │ ├── dec_256.hpp │ │ │ ├── dec_512.hpp │ │ │ ├── inc_1024.hpp │ │ │ ├── inc_256.hpp │ │ │ └── inc_512.hpp │ │ ├── mod.hpp │ │ ├── mul.hpp │ │ └── sub.hpp │ ├── array.hpp │ ├── array │ │ ├── data.hpp │ │ ├── detail │ │ │ └── get_data.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── insert.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_list.hpp │ │ ├── to_seq.hpp │ │ └── to_tuple.hpp │ ├── assert_msg.hpp │ ├── cat.hpp │ ├── comma.hpp │ ├── comma_if.hpp │ ├── comparison.hpp │ ├── comparison │ │ ├── equal.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── not_equal_1024.hpp │ │ │ ├── not_equal_256.hpp │ │ │ └── not_equal_512.hpp │ │ └── not_equal.hpp │ ├── config │ │ ├── config.hpp │ │ └── limits.hpp │ ├── control.hpp │ ├── control │ │ ├── deduce_d.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── while.hpp │ │ │ ├── edg │ │ │ │ ├── limits │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ └── while_512.hpp │ │ │ │ └── while.hpp │ │ │ ├── limits │ │ │ │ ├── while_1024.hpp │ │ │ │ ├── while_256.hpp │ │ │ │ └── while_512.hpp │ │ │ ├── msvc │ │ │ │ └── while.hpp │ │ │ └── while.hpp │ │ ├── expr_if.hpp │ │ ├── expr_iif.hpp │ │ ├── if.hpp │ │ ├── iif.hpp │ │ ├── limits │ │ │ ├── while_1024.hpp │ │ │ ├── while_256.hpp │ │ │ └── while_512.hpp │ │ └── while.hpp │ ├── debug.hpp │ ├── debug │ │ ├── assert.hpp │ │ ├── error.hpp │ │ └── line.hpp │ ├── dec.hpp │ ├── detail │ │ ├── auto_rec.hpp │ │ ├── check.hpp │ │ ├── dmc │ │ │ └── auto_rec.hpp │ │ ├── is_binary.hpp │ │ ├── is_nullary.hpp │ │ ├── is_unary.hpp │ │ ├── limits │ │ │ ├── auto_rec_1024.hpp │ │ │ ├── auto_rec_256.hpp │ │ │ └── auto_rec_512.hpp │ │ ├── null.hpp │ │ └── split.hpp │ ├── empty.hpp │ ├── enum.hpp │ ├── enum_params.hpp │ ├── enum_params_with_a_default.hpp │ ├── enum_params_with_defaults.hpp │ ├── enum_shifted.hpp │ ├── enum_shifted_params.hpp │ ├── expand.hpp │ ├── expr_if.hpp │ ├── facilities.hpp │ ├── facilities │ │ ├── apply.hpp │ │ ├── check_empty.hpp │ │ ├── detail │ │ │ └── is_empty.hpp │ │ ├── empty.hpp │ │ ├── expand.hpp │ │ ├── identity.hpp │ │ ├── intercept.hpp │ │ ├── is_1.hpp │ │ ├── is_empty.hpp │ │ ├── is_empty_or_1.hpp │ │ ├── is_empty_variadic.hpp │ │ ├── limits │ │ │ ├── intercept_1024.hpp │ │ │ ├── intercept_256.hpp │ │ │ └── intercept_512.hpp │ │ ├── overload.hpp │ │ └── va_opt.hpp │ ├── for.hpp │ ├── identity.hpp │ ├── if.hpp │ ├── inc.hpp │ ├── iterate.hpp │ ├── iteration.hpp │ ├── iteration │ │ ├── detail │ │ │ ├── bounds │ │ │ │ ├── lower1.hpp │ │ │ │ ├── lower2.hpp │ │ │ │ ├── lower3.hpp │ │ │ │ ├── lower4.hpp │ │ │ │ ├── lower5.hpp │ │ │ │ ├── upper1.hpp │ │ │ │ ├── upper2.hpp │ │ │ │ ├── upper3.hpp │ │ │ │ ├── upper4.hpp │ │ │ │ └── upper5.hpp │ │ │ ├── finish.hpp │ │ │ ├── iter │ │ │ │ ├── forward1.hpp │ │ │ │ ├── forward2.hpp │ │ │ │ ├── forward3.hpp │ │ │ │ ├── forward4.hpp │ │ │ │ ├── forward5.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── forward1_1024.hpp │ │ │ │ │ ├── forward1_256.hpp │ │ │ │ │ ├── forward1_512.hpp │ │ │ │ │ ├── forward2_1024.hpp │ │ │ │ │ ├── forward2_256.hpp │ │ │ │ │ ├── forward2_512.hpp │ │ │ │ │ ├── forward3_1024.hpp │ │ │ │ │ ├── forward3_256.hpp │ │ │ │ │ ├── forward3_512.hpp │ │ │ │ │ ├── forward4_1024.hpp │ │ │ │ │ ├── forward4_256.hpp │ │ │ │ │ ├── forward4_512.hpp │ │ │ │ │ ├── forward5_1024.hpp │ │ │ │ │ ├── forward5_256.hpp │ │ │ │ │ ├── forward5_512.hpp │ │ │ │ │ ├── reverse1_1024.hpp │ │ │ │ │ ├── reverse1_256.hpp │ │ │ │ │ ├── reverse1_512.hpp │ │ │ │ │ ├── reverse2_1024.hpp │ │ │ │ │ ├── reverse2_256.hpp │ │ │ │ │ ├── reverse2_512.hpp │ │ │ │ │ ├── reverse3_1024.hpp │ │ │ │ │ ├── reverse3_256.hpp │ │ │ │ │ ├── reverse3_512.hpp │ │ │ │ │ ├── reverse4_1024.hpp │ │ │ │ │ ├── reverse4_256.hpp │ │ │ │ │ ├── reverse4_512.hpp │ │ │ │ │ ├── reverse5_1024.hpp │ │ │ │ │ ├── reverse5_256.hpp │ │ │ │ │ └── reverse5_512.hpp │ │ │ │ ├── reverse1.hpp │ │ │ │ ├── reverse2.hpp │ │ │ │ ├── reverse3.hpp │ │ │ │ ├── reverse4.hpp │ │ │ │ └── reverse5.hpp │ │ │ ├── limits │ │ │ │ ├── local_1024.hpp │ │ │ │ ├── local_256.hpp │ │ │ │ ├── local_512.hpp │ │ │ │ ├── rlocal_1024.hpp │ │ │ │ ├── rlocal_256.hpp │ │ │ │ └── rlocal_512.hpp │ │ │ ├── local.hpp │ │ │ ├── rlocal.hpp │ │ │ ├── self.hpp │ │ │ └── start.hpp │ │ ├── iterate.hpp │ │ ├── local.hpp │ │ └── self.hpp │ ├── library.hpp │ ├── limits.hpp │ ├── list.hpp │ ├── list │ │ ├── adt.hpp │ │ ├── append.hpp │ │ ├── at.hpp │ │ ├── cat.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── fold_left.hpp │ │ │ ├── edg │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ └── limits │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ └── fold_right_512.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ └── limits │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ ├── fold_left_256.hpp │ │ │ │ ├── fold_left_512.hpp │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ ├── fold_right_256.hpp │ │ │ │ └── fold_right_512.hpp │ │ ├── enum.hpp │ │ ├── filter.hpp │ │ ├── first_n.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── for_each_i.hpp │ │ ├── for_each_product.hpp │ │ ├── limits │ │ │ ├── fold_left_1024.hpp │ │ │ ├── fold_left_256.hpp │ │ │ └── fold_left_512.hpp │ │ ├── rest_n.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_seq.hpp │ │ ├── to_tuple.hpp │ │ └── transform.hpp │ ├── logical.hpp │ ├── logical │ │ ├── and.hpp │ │ ├── bitand.hpp │ │ ├── bitnor.hpp │ │ ├── bitor.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── compl.hpp │ │ ├── limits │ │ │ ├── bool_1024.hpp │ │ │ ├── bool_256.hpp │ │ │ └── bool_512.hpp │ │ ├── nor.hpp │ │ ├── not.hpp │ │ ├── or.hpp │ │ └── xor.hpp │ ├── max.hpp │ ├── min.hpp │ ├── punctuation.hpp │ ├── punctuation │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── detail │ │ │ └── is_begin_parens.hpp │ │ ├── is_begin_parens.hpp │ │ ├── paren.hpp │ │ ├── paren_if.hpp │ │ └── remove_parens.hpp │ ├── repeat.hpp │ ├── repeat_2nd.hpp │ ├── repeat_3rd.hpp │ ├── repeat_from_to.hpp │ ├── repeat_from_to_2nd.hpp │ ├── repeat_from_to_3rd.hpp │ ├── repetition.hpp │ ├── repetition │ │ ├── deduce_r.hpp │ │ ├── deduce_z.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── for.hpp │ │ │ ├── edg │ │ │ │ ├── for.hpp │ │ │ │ └── limits │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ └── for_512.hpp │ │ │ ├── for.hpp │ │ │ ├── limits │ │ │ │ ├── for_1024.hpp │ │ │ │ ├── for_256.hpp │ │ │ │ └── for_512.hpp │ │ │ └── msvc │ │ │ │ └── for.hpp │ │ ├── enum.hpp │ │ ├── enum_binary_params.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_binary_params.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── enum_trailing.hpp │ │ ├── enum_trailing_binary_params.hpp │ │ ├── enum_trailing_params.hpp │ │ ├── for.hpp │ │ ├── limits │ │ │ ├── for_1024.hpp │ │ │ ├── for_256.hpp │ │ │ ├── for_512.hpp │ │ │ ├── repeat_1024.hpp │ │ │ ├── repeat_256.hpp │ │ │ └── repeat_512.hpp │ │ ├── repeat.hpp │ │ └── repeat_from_to.hpp │ ├── selection.hpp │ ├── selection │ │ ├── max.hpp │ │ └── min.hpp │ ├── seq.hpp │ ├── seq │ │ ├── cat.hpp │ │ ├── detail │ │ │ ├── binary_transform.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── limits │ │ │ │ ├── split_1024.hpp │ │ │ │ ├── split_256.hpp │ │ │ │ └── split_512.hpp │ │ │ ├── split.hpp │ │ │ └── to_list_msvc.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── filter.hpp │ │ ├── first_n.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── for_each_i.hpp │ │ ├── for_each_product.hpp │ │ ├── insert.hpp │ │ ├── limits │ │ │ ├── elem_1024.hpp │ │ │ ├── elem_256.hpp │ │ │ ├── elem_512.hpp │ │ │ ├── enum_1024.hpp │ │ │ ├── enum_256.hpp │ │ │ ├── enum_512.hpp │ │ │ ├── fold_left_1024.hpp │ │ │ ├── fold_left_256.hpp │ │ │ ├── fold_left_512.hpp │ │ │ ├── fold_right_1024.hpp │ │ │ ├── fold_right_256.hpp │ │ │ ├── fold_right_512.hpp │ │ │ ├── size_1024.hpp │ │ │ ├── size_256.hpp │ │ │ └── size_512.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── rest_n.hpp │ │ ├── reverse.hpp │ │ ├── seq.hpp │ │ ├── size.hpp │ │ ├── subseq.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ ├── to_tuple.hpp │ │ ├── transform.hpp │ │ └── variadic_seq_to_seq.hpp │ ├── slot.hpp │ ├── slot │ │ ├── counter.hpp │ │ ├── detail │ │ │ ├── counter.hpp │ │ │ ├── def.hpp │ │ │ ├── shared.hpp │ │ │ ├── slot1.hpp │ │ │ ├── slot2.hpp │ │ │ ├── slot3.hpp │ │ │ ├── slot4.hpp │ │ │ └── slot5.hpp │ │ └── slot.hpp │ ├── stringize.hpp │ ├── tuple.hpp │ ├── tuple │ │ ├── detail │ │ │ └── is_single_return.hpp │ │ ├── eat.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── insert.hpp │ │ ├── limits │ │ │ ├── reverse_128.hpp │ │ │ ├── reverse_256.hpp │ │ │ ├── reverse_64.hpp │ │ │ ├── to_list_128.hpp │ │ │ ├── to_list_256.hpp │ │ │ ├── to_list_64.hpp │ │ │ ├── to_seq_128.hpp │ │ │ ├── to_seq_256.hpp │ │ │ └── to_seq_64.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── rem.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ └── to_seq.hpp │ ├── variadic.hpp │ ├── variadic │ │ ├── detail │ │ │ ├── has_opt.hpp │ │ │ └── is_single_return.hpp │ │ ├── elem.hpp │ │ ├── has_opt.hpp │ │ ├── limits │ │ │ ├── elem_128.hpp │ │ │ ├── elem_256.hpp │ │ │ ├── elem_64.hpp │ │ │ ├── size_128.hpp │ │ │ ├── size_256.hpp │ │ │ └── size_64.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ ├── to_seq.hpp │ │ └── to_tuple.hpp │ ├── while.hpp │ └── wstringize.hpp │ ├── ref.hpp │ ├── static_assert.hpp │ ├── swap.hpp │ ├── throw_exception.hpp │ ├── tuple │ ├── detail │ │ └── tuple_basic.hpp │ ├── tuple.hpp │ ├── tuple_comparison.hpp │ └── tuple_io.hpp │ ├── type_traits │ ├── add_const.hpp │ ├── add_cv.hpp │ ├── add_lvalue_reference.hpp │ ├── add_pointer.hpp │ ├── add_reference.hpp │ ├── add_rvalue_reference.hpp │ ├── add_volatile.hpp │ ├── aligned_storage.hpp │ ├── alignment_of.hpp │ ├── alignment_traits.hpp │ ├── arithmetic_traits.hpp │ ├── array_traits.hpp │ ├── broken_compiler_spec.hpp │ ├── common_type.hpp │ ├── composite_traits.hpp │ ├── conditional.hpp │ ├── config.hpp │ ├── conjunction.hpp │ ├── conversion_traits.hpp │ ├── copy_cv.hpp │ ├── copy_cv_ref.hpp │ ├── copy_reference.hpp │ ├── cv_traits.hpp │ ├── decay.hpp │ ├── declval.hpp │ ├── detail │ │ ├── bool_trait_def.hpp │ │ ├── bool_trait_undef.hpp │ │ ├── common_arithmetic_type.hpp │ │ ├── common_type_impl.hpp │ │ ├── composite_member_pointer_type.hpp │ │ ├── composite_pointer_type.hpp │ │ ├── config.hpp │ │ ├── detector.hpp │ │ ├── has_binary_operator.hpp │ │ ├── has_postfix_operator.hpp │ │ ├── has_prefix_operator.hpp │ │ ├── ice_and.hpp │ │ ├── ice_eq.hpp │ │ ├── ice_not.hpp │ │ ├── ice_or.hpp │ │ ├── is_function_cxx_03.hpp │ │ ├── is_function_cxx_11.hpp │ │ ├── is_function_msvc10_fix.hpp │ │ ├── is_function_ptr_helper.hpp │ │ ├── is_function_ptr_tester.hpp │ │ ├── is_likely_lambda.hpp │ │ ├── is_mem_fun_pointer_impl.hpp │ │ ├── is_mem_fun_pointer_tester.hpp │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ ├── is_swappable_cxx_11.hpp │ │ ├── mp_defer.hpp │ │ ├── template_arity_spec.hpp │ │ └── yes_no_type.hpp │ ├── detected.hpp │ ├── detected_or.hpp │ ├── disjunction.hpp │ ├── enable_if.hpp │ ├── extent.hpp │ ├── floating_point_promotion.hpp │ ├── function_traits.hpp │ ├── has_bit_and.hpp │ ├── has_bit_and_assign.hpp │ ├── has_bit_or.hpp │ ├── has_bit_or_assign.hpp │ ├── has_bit_xor.hpp │ ├── has_bit_xor_assign.hpp │ ├── has_complement.hpp │ ├── has_dereference.hpp │ ├── has_divides.hpp │ ├── has_divides_assign.hpp │ ├── has_equal_to.hpp │ ├── has_greater.hpp │ ├── has_greater_equal.hpp │ ├── has_left_shift.hpp │ ├── has_left_shift_assign.hpp │ ├── has_less.hpp │ ├── has_less_equal.hpp │ ├── has_logical_and.hpp │ ├── has_logical_not.hpp │ ├── has_logical_or.hpp │ ├── has_minus.hpp │ ├── has_minus_assign.hpp │ ├── has_modulus.hpp │ ├── has_modulus_assign.hpp │ ├── has_multiplies.hpp │ ├── has_multiplies_assign.hpp │ ├── has_negate.hpp │ ├── has_new_operator.hpp │ ├── has_not_equal_to.hpp │ ├── has_nothrow_assign.hpp │ ├── has_nothrow_constructor.hpp │ ├── has_nothrow_copy.hpp │ ├── has_nothrow_destructor.hpp │ ├── has_operator.hpp │ ├── has_plus.hpp │ ├── has_plus_assign.hpp │ ├── has_post_decrement.hpp │ ├── has_post_increment.hpp │ ├── has_pre_decrement.hpp │ ├── has_pre_increment.hpp │ ├── has_right_shift.hpp │ ├── has_right_shift_assign.hpp │ ├── has_trivial_assign.hpp │ ├── has_trivial_constructor.hpp │ ├── has_trivial_copy.hpp │ ├── has_trivial_destructor.hpp │ ├── has_trivial_move_assign.hpp │ ├── has_trivial_move_constructor.hpp │ ├── has_unary_minus.hpp │ ├── has_unary_plus.hpp │ ├── has_virtual_destructor.hpp │ ├── ice.hpp │ ├── integral_constant.hpp │ ├── integral_promotion.hpp │ ├── intrinsics.hpp │ ├── is_abstract.hpp │ ├── is_arithmetic.hpp │ ├── is_array.hpp │ ├── is_assignable.hpp │ ├── is_base_and_derived.hpp │ ├── is_base_of.hpp │ ├── is_base_of_tr1.hpp │ ├── is_bounded_array.hpp │ ├── is_class.hpp │ ├── is_complete.hpp │ ├── is_complex.hpp │ ├── is_compound.hpp │ ├── is_const.hpp │ ├── is_constructible.hpp │ ├── is_convertible.hpp │ ├── is_copy_assignable.hpp │ ├── is_copy_constructible.hpp │ ├── is_default_constructible.hpp │ ├── is_destructible.hpp │ ├── is_detected.hpp │ ├── is_detected_convertible.hpp │ ├── is_detected_exact.hpp │ ├── is_empty.hpp │ ├── is_enum.hpp │ ├── is_final.hpp │ ├── is_float.hpp │ ├── is_floating_point.hpp │ ├── is_function.hpp │ ├── is_fundamental.hpp │ ├── is_integral.hpp │ ├── is_list_constructible.hpp │ ├── is_lvalue_reference.hpp │ ├── is_member_function_pointer.hpp │ ├── is_member_object_pointer.hpp │ ├── is_member_pointer.hpp │ ├── is_noncopyable.hpp │ ├── is_nothrow_move_assignable.hpp │ ├── is_nothrow_move_constructible.hpp │ ├── is_nothrow_swappable.hpp │ ├── is_object.hpp │ ├── is_pod.hpp │ ├── is_pointer.hpp │ ├── is_polymorphic.hpp │ ├── is_reference.hpp │ ├── is_rvalue_reference.hpp │ ├── is_same.hpp │ ├── is_scalar.hpp │ ├── is_scoped_enum.hpp │ ├── is_signed.hpp │ ├── is_stateless.hpp │ ├── is_trivially_copyable.hpp │ ├── is_unbounded_array.hpp │ ├── is_union.hpp │ ├── is_unscoped_enum.hpp │ ├── is_unsigned.hpp │ ├── is_virtual_base_of.hpp │ ├── is_void.hpp │ ├── is_volatile.hpp │ ├── make_signed.hpp │ ├── make_unsigned.hpp │ ├── make_void.hpp │ ├── negation.hpp │ ├── nonesuch.hpp │ ├── object_traits.hpp │ ├── promote.hpp │ ├── rank.hpp │ ├── reference_traits.hpp │ ├── remove_all_extents.hpp │ ├── remove_bounds.hpp │ ├── remove_const.hpp │ ├── remove_cv.hpp │ ├── remove_cv_ref.hpp │ ├── remove_extent.hpp │ ├── remove_pointer.hpp │ ├── remove_reference.hpp │ ├── remove_volatile.hpp │ ├── same_traits.hpp │ ├── transform_traits.hpp │ ├── type_identity.hpp │ └── type_with_alignment.hpp │ ├── unordered │ ├── detail │ │ ├── fca.hpp │ │ ├── fwd.hpp │ │ ├── implementation.hpp │ │ ├── map.hpp │ │ ├── mulx.hpp │ │ ├── narrow_cast.hpp │ │ ├── prime_fmod.hpp │ │ ├── requires_cxx11.hpp │ │ ├── set.hpp │ │ ├── type_traits.hpp │ │ └── xmx.hpp │ ├── unordered_map.hpp │ ├── unordered_map_fwd.hpp │ ├── unordered_set.hpp │ └── unordered_set_fwd.hpp │ ├── unordered_map.hpp │ ├── unordered_set.hpp │ ├── utility │ ├── addressof.hpp │ ├── enable_if.hpp │ └── swap.hpp │ └── version.hpp ├── pyproject.toml ├── repltest ├── master │ ├── buildout.cfg │ ├── notes.sql │ └── replicas.conf ├── my.cnf.in ├── mysql-no-read-etc.patch └── slave │ ├── buildout.cfg │ └── notes.sql ├── scripts ├── install.ps1 ├── releases │ ├── geventrel.sh │ ├── geventreleases.sh │ ├── make-manylinux │ ├── relstoragerel.sh │ └── relstoragereleases.sh └── util │ └── zodbgcrecover.py ├── setup.cfg ├── setup.py ├── src └── relstorage │ ├── .gitignore │ ├── __init__.py │ ├── _compat.py │ ├── _inthashmap.h │ ├── _inthashmap.pxd │ ├── _inthashmap.pyx │ ├── _mvcc.py │ ├── _rs_types.h │ ├── _rs_types.pxd │ ├── _util.py │ ├── adapters │ ├── __init__.py │ ├── _util.py │ ├── adapter.py │ ├── batch.py │ ├── connections.py │ ├── connmanager.py │ ├── dbiter.py │ ├── drivers.py │ ├── interfaces.py │ ├── locker.py │ ├── mover.py │ ├── mysql │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── connmanager.py │ │ ├── drivers │ │ │ ├── __init__.py │ │ │ ├── _mysqldb_gevent.py │ │ │ ├── mysqlconnector.py │ │ │ ├── mysqldb.py │ │ │ ├── pymysql.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_mysqldb.py │ │ ├── locker.py │ │ ├── mover.py │ │ ├── oidallocator.py │ │ ├── packundo.py │ │ ├── procs │ │ │ ├── __init__.py │ │ │ ├── clean_temp_state.sql │ │ │ ├── hf │ │ │ │ ├── __init__.py │ │ │ │ ├── lock_and_choose_tid.sql │ │ │ │ ├── lock_and_choose_tid_and_move.sql │ │ │ │ └── lock_and_choose_tid_p.sql │ │ │ ├── hp │ │ │ │ ├── __init__.py │ │ │ │ ├── lock_and_choose_tid.sql │ │ │ │ ├── lock_and_choose_tid_and_move.sql │ │ │ │ └── lock_and_choose_tid_p.sql │ │ │ ├── lock_database_for_commit.sql │ │ │ ├── lock_objects_and_detect_conflicts.sql │ │ │ ├── make_current_tid.sql │ │ │ ├── make_tid_for_epoch.sql │ │ │ └── set_min_oid.sql │ │ ├── schema.py │ │ ├── stats.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_adapter.py │ │ │ ├── test_dialect.py │ │ │ ├── test_schema.py │ │ │ └── test_txncontrol.py │ │ └── txncontrol.py │ ├── oidallocator.py │ ├── oracle │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── batch.py │ │ ├── connmanager.py │ │ ├── dialect.py │ │ ├── drivers.py │ │ ├── locker.py │ │ ├── mover.py │ │ ├── oidallocator.py │ │ ├── packundo.py │ │ ├── schema.py │ │ ├── scriptrunner.py │ │ ├── stats.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_adapter.py │ │ │ └── test_dialect.py │ │ └── txncontrol.py │ ├── packundo.py │ ├── poller.py │ ├── postgresql │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── batch.py │ │ ├── connmanager.py │ │ ├── drivers │ │ │ ├── __init__.py │ │ │ ├── _lobject.py │ │ │ ├── pg8000.py │ │ │ ├── psycopg2.py │ │ │ ├── psycopg2cffi.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_psycopg2.py │ │ ├── locker.py │ │ ├── mover.py │ │ ├── oidallocator.py │ │ ├── procs │ │ │ ├── __init__.py │ │ │ ├── blob_chunk_delete_trigger.sql │ │ │ ├── hf │ │ │ │ ├── __init__.py │ │ │ │ ├── lock_and_choose_tid.sql │ │ │ │ └── lock_and_choose_tid_and_move.sql │ │ │ ├── hp │ │ │ │ ├── __init__.py │ │ │ │ ├── lock_and_choose_tid.sql │ │ │ │ └── lock_and_choose_tid_and_move.sql │ │ │ ├── lock_objects_and_detect_conflicts.sql │ │ │ ├── make_current_tid.sql │ │ │ ├── make_tid_for_epoch.sql │ │ │ ├── merge_blob_chunks.sql │ │ │ └── temp_blob_chunk_delete_trigger.sql │ │ ├── schema.py │ │ ├── stats.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_adapter.py │ │ │ ├── test_mover.py │ │ │ └── test_txncontrol.py │ │ ├── txncontrol.py │ │ └── util.py │ ├── replica.py │ ├── schema.py │ ├── scriptrunner.py │ ├── sql │ │ ├── __init__.py │ │ ├── _util.py │ │ ├── ast.py │ │ ├── dialect.py │ │ ├── expressions.py │ │ ├── functions.py │ │ ├── insert.py │ │ ├── interfaces.py │ │ ├── query.py │ │ ├── schema.py │ │ ├── select.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_ast.py │ │ │ ├── test_dialect.py │ │ │ ├── test_expressions.py │ │ │ ├── test_query.py │ │ │ ├── test_schema.py │ │ │ └── test_sql.py │ │ └── types.py │ ├── sqlite │ │ ├── __init__.py │ │ ├── adapter.py │ │ ├── batch.py │ │ ├── connmanager.py │ │ ├── dialect.py │ │ ├── drivers.py │ │ ├── locker.py │ │ ├── mover.py │ │ ├── oidallocator.py │ │ ├── poller.py │ │ ├── schema.py │ │ ├── scriptrunner.py │ │ ├── stats.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_adapter.py │ │ │ ├── test_dialect.py │ │ │ ├── test_driver.py │ │ │ ├── test_mover.py │ │ │ └── test_sqlite.py │ │ └── txncontrol.py │ ├── stats.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_adapter.py │ │ ├── test_batch.py │ │ ├── test_connections.py │ │ ├── test_connmanager.py │ │ ├── test_drivers.py │ │ ├── test_interfaces.py │ │ ├── test_oidallocator.py │ │ ├── test_replica.py │ │ ├── test_txncontrol.py │ │ └── test_util.py │ └── txncontrol.py │ ├── blobhelper │ ├── __init__.py │ ├── abstract.py │ ├── cached.py │ ├── interfaces.py │ ├── shared.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_blobhelper.py │ │ ├── test_cached.py │ │ └── test_shared.py │ └── util.py │ ├── cache │ ├── .gitignore │ ├── __init__.py │ ├── _objectindex.pyx │ ├── _statecache_wrappers.py │ ├── c_cache.cpp │ ├── c_cache.h │ ├── c_cache.pxd │ ├── cache.pyx │ ├── interfaces.py │ ├── local_client.py │ ├── local_database.py │ ├── memcache_client.py │ ├── micro_benchmark_results.rst │ ├── mvcc.py │ ├── persistence.py │ ├── storage_cache.py │ ├── tests │ │ ├── __init__.py │ │ ├── bench_mvcc.py │ │ ├── benchmarks.py │ │ ├── cache_trace_analysis.rst │ │ ├── test__statecache_wrappers.py │ │ ├── test_cache_stats.py │ │ ├── test_local_client.py │ │ ├── test_local_database.py │ │ ├── test_lru_cffiring.py │ │ ├── test_memcache_client.py │ │ ├── test_mvcc.py │ │ └── test_storage_cache.py │ └── trace.py │ ├── component.xml │ ├── config.py │ ├── interfaces.py │ ├── options.py │ ├── pylibmc_wrapper.py │ ├── storage │ ├── __init__.py │ ├── copy.py │ ├── history.py │ ├── interfaces.py │ ├── legacy.py │ ├── load.py │ ├── oid.py │ ├── pack.py │ ├── store.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_storage.py │ │ └── test_util.py │ ├── tpc │ │ ├── __init__.py │ │ ├── begin.py │ │ ├── finish.py │ │ ├── restore.py │ │ ├── temporary_storage.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── test_temporary_storage.py │ │ │ ├── test_tpc.py │ │ │ └── test_vote.py │ │ └── vote.py │ ├── transaction_iterator.py │ └── util.py │ ├── tests │ ├── RecoveryStorage.py │ ├── __init__.py │ ├── bigmark.py │ ├── bigpack.py │ ├── blob │ │ ├── __init__.py │ │ ├── blob_cache.py │ │ ├── blob_connection.py │ │ ├── blob_importexport.py │ │ ├── blob_packing.py │ │ ├── blob_transaction.py │ │ └── testblob.py │ ├── fakecache.py │ ├── hftestbase.py │ ├── hptestbase.py │ ├── locking.py │ ├── packstresstest.py │ ├── packundo.py │ ├── persistentcache.py │ ├── reltestbase.py │ ├── replicas.conf │ ├── ro_replicas.conf │ ├── test__inthashmap.py │ ├── test__mvcc.py │ ├── test__util.py │ ├── test_config.py │ ├── test_treemark.py │ ├── test_zodbconvert.py │ ├── test_zodbpack.py │ ├── test_zodburi.py │ ├── testmysql.py │ ├── testoracle.py │ ├── testpostgresql.py │ └── util.py │ ├── treemark.py │ ├── zodbconvert.py │ ├── zodbpack.py │ └── zodburi_resolver.py ├── tox.ini └── version.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/actions/build-relstorage/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.github/actions/build-relstorage/action.yml -------------------------------------------------------------------------------- /.github/actions/config-cc/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.github/actions/config-cc/action.yml -------------------------------------------------------------------------------- /.github/actions/install-native-libs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.github/actions/install-native-libs/action.yml -------------------------------------------------------------------------------- /.github/actions/run-tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.github/actions/run-tests/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis/docker.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/docker.cnf -------------------------------------------------------------------------------- /.travis/mysql.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/mysql.cmd -------------------------------------------------------------------------------- /.travis/mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/mysql.sh -------------------------------------------------------------------------------- /.travis/postgres.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/postgres.cmd -------------------------------------------------------------------------------- /.travis/postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/postgres.sh -------------------------------------------------------------------------------- /.travis/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/run_with_env.cmd -------------------------------------------------------------------------------- /.travis/setup-cmysqlconnector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/setup-cmysqlconnector.sh -------------------------------------------------------------------------------- /.travis/setup-mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/setup-mysql.sh -------------------------------------------------------------------------------- /.travis/setup-mysqlconnector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/setup-mysqlconnector.sh -------------------------------------------------------------------------------- /.travis/setup-oracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/setup-oracle.sh -------------------------------------------------------------------------------- /.travis/setup-postgres.sh: -------------------------------------------------------------------------------- 1 | `dirname $0`/postgres.sh 2 | -------------------------------------------------------------------------------- /.travis/setup-pymysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/setup-pymysql.sh -------------------------------------------------------------------------------- /.travis/zope_testrunner_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/.travis/zope_testrunner_gevent.py -------------------------------------------------------------------------------- /BUILDOUT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/BUILDOUT.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/bootstrap.py -------------------------------------------------------------------------------- /docs/.mocks/_pylibmc.py: -------------------------------------------------------------------------------- 1 | class MemcachedError(Exception): pass 2 | -------------------------------------------------------------------------------- /docs/.mocks/cx_Oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/.mocks/cx_Oracle.py -------------------------------------------------------------------------------- /docs/.mocks/pylibmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/.mocks/pylibmc.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/cache-tracing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/cache-tracing.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/command-line-utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/command-line-utilities.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration-reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/configuration-reference.rst -------------------------------------------------------------------------------- /docs/configure-application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/configure-application.rst -------------------------------------------------------------------------------- /docs/configure-database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/configure-database.rst -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/db-specific-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/db-specific-options.rst -------------------------------------------------------------------------------- /docs/developing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/developing.rst -------------------------------------------------------------------------------- /docs/developing/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/developing/caching.rst -------------------------------------------------------------------------------- /docs/developing/pack_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/developing/pack_policy.png -------------------------------------------------------------------------------- /docs/developing/packing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/developing/packing.rst -------------------------------------------------------------------------------- /docs/developing/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/developing/running.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/generate_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/generate_rst.py -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/internals.rst -------------------------------------------------------------------------------- /docs/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-1.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-1.0.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-1.1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-1.1.1.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-1.1.2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-1.1.2.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-1.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-1.1.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-1.4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-1.4.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-1.5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-1.5.rst -------------------------------------------------------------------------------- /docs/migration/migrate-to-3.0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/migration/migrate-to-3.0.rst -------------------------------------------------------------------------------- /docs/mysql/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/mysql/index.rst -------------------------------------------------------------------------------- /docs/mysql/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/mysql/install.rst -------------------------------------------------------------------------------- /docs/mysql/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/mysql/options.rst -------------------------------------------------------------------------------- /docs/mysql/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/mysql/setup.rst -------------------------------------------------------------------------------- /docs/old_history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/old_history.rst -------------------------------------------------------------------------------- /docs/oracle/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/oracle/index.rst -------------------------------------------------------------------------------- /docs/oracle/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/oracle/install.rst -------------------------------------------------------------------------------- /docs/oracle/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/oracle/options.rst -------------------------------------------------------------------------------- /docs/oracle/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/oracle/setup.rst -------------------------------------------------------------------------------- /docs/perf-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-20.png -------------------------------------------------------------------------------- /docs/perf-rs14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-rs14.png -------------------------------------------------------------------------------- /docs/perf-rs20-no-mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-rs20-no-mem.png -------------------------------------------------------------------------------- /docs/perf-rs20-rs16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-rs20-rs16.png -------------------------------------------------------------------------------- /docs/perf-rs20pypy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-rs20pypy.png -------------------------------------------------------------------------------- /docs/perf-rs21v20-c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-rs21v20-c2.png -------------------------------------------------------------------------------- /docs/perf-rs21v20-c6-n100-s256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/perf-rs21v20-c6-n100-s256.png -------------------------------------------------------------------------------- /docs/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/performance.rst -------------------------------------------------------------------------------- /docs/postgresql/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/postgresql/index.rst -------------------------------------------------------------------------------- /docs/postgresql/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/postgresql/install.rst -------------------------------------------------------------------------------- /docs/postgresql/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/postgresql/options.rst -------------------------------------------------------------------------------- /docs/postgresql/pgbouncer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/postgresql/pgbouncer.rst -------------------------------------------------------------------------------- /docs/postgresql/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/postgresql/setup.rst -------------------------------------------------------------------------------- /docs/relstorage-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/relstorage-options.rst -------------------------------------------------------------------------------- /docs/sqlite3/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/faq.rst -------------------------------------------------------------------------------- /docs/sqlite3/faq_sql_add_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/faq_sql_add_objects.png -------------------------------------------------------------------------------- /docs/sqlite3/faq_sql_read_cold_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/faq_sql_read_cold_objects.png -------------------------------------------------------------------------------- /docs/sqlite3/faq_sql_update_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/faq_sql_update_objects.png -------------------------------------------------------------------------------- /docs/sqlite3/faq_sql_write_read_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/faq_sql_write_read_objects.png -------------------------------------------------------------------------------- /docs/sqlite3/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/index.rst -------------------------------------------------------------------------------- /docs/sqlite3/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/install.rst -------------------------------------------------------------------------------- /docs/sqlite3/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/options.rst -------------------------------------------------------------------------------- /docs/sqlite3/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/sqlite3/setup.rst -------------------------------------------------------------------------------- /docs/supported-databases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/supported-databases.rst -------------------------------------------------------------------------------- /docs/things-to-know.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/things-to-know.rst -------------------------------------------------------------------------------- /docs/zodbconvert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/zodbconvert.rst -------------------------------------------------------------------------------- /docs/zodbpack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/zodbpack.rst -------------------------------------------------------------------------------- /docs/zodburi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/docs/zodburi.rst -------------------------------------------------------------------------------- /include/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/LICENSE_1_0.txt -------------------------------------------------------------------------------- /include/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/README.rst -------------------------------------------------------------------------------- /include/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/assert.hpp -------------------------------------------------------------------------------- /include/boost/assert/source_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/assert/source_location.hpp -------------------------------------------------------------------------------- /include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /include/boost/config/compiler/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/compiler/xlcpp_zos.hpp -------------------------------------------------------------------------------- /include/boost/config/detail/cxx_composite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/detail/cxx_composite.hpp -------------------------------------------------------------------------------- /include/boost/config/detail/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/detail/posix_features.hpp -------------------------------------------------------------------------------- /include/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /include/boost/config/header_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/header_deprecated.hpp -------------------------------------------------------------------------------- /include/boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /include/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /include/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /include/boost/config/pragma_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/pragma_message.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /include/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/user.hpp -------------------------------------------------------------------------------- /include/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /include/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/config/workaround.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/detail/limits.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/detail/mulx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/detail/mulx.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/extensions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/extensions.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/hash.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/hash_fwd.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/is_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/is_range.hpp -------------------------------------------------------------------------------- /include/boost/container_hash/is_tuple_like.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/container_hash/is_tuple_like.hpp -------------------------------------------------------------------------------- /include/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/addressof.hpp -------------------------------------------------------------------------------- /include/boost/core/allocator_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/allocator_access.hpp -------------------------------------------------------------------------------- /include/boost/core/allocator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/allocator_traits.hpp -------------------------------------------------------------------------------- /include/boost/core/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/bit.hpp -------------------------------------------------------------------------------- /include/boost/core/empty_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/empty_value.hpp -------------------------------------------------------------------------------- /include/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /include/boost/core/explicit_operator_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/explicit_operator_bool.hpp -------------------------------------------------------------------------------- /include/boost/core/no_exceptions_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/no_exceptions_support.hpp -------------------------------------------------------------------------------- /include/boost/core/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/pointer_traits.hpp -------------------------------------------------------------------------------- /include/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/ref.hpp -------------------------------------------------------------------------------- /include/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/core/swap.hpp -------------------------------------------------------------------------------- /include/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/cstdint.hpp -------------------------------------------------------------------------------- /include/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/current_function.hpp -------------------------------------------------------------------------------- /include/boost/describe/bases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/bases.hpp -------------------------------------------------------------------------------- /include/boost/describe/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/class.hpp -------------------------------------------------------------------------------- /include/boost/describe/descriptor_by_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/descriptor_by_name.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/bases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/bases.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/config.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/cx_streq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/cx_streq.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/list.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/members.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/members.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/pp_for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/pp_for_each.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/pp_utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/pp_utilities.hpp -------------------------------------------------------------------------------- /include/boost/describe/detail/void_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/detail/void_t.hpp -------------------------------------------------------------------------------- /include/boost/describe/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/enum.hpp -------------------------------------------------------------------------------- /include/boost/describe/enum_from_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/enum_from_string.hpp -------------------------------------------------------------------------------- /include/boost/describe/enum_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/enum_to_string.hpp -------------------------------------------------------------------------------- /include/boost/describe/enumerators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/enumerators.hpp -------------------------------------------------------------------------------- /include/boost/describe/members.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/members.hpp -------------------------------------------------------------------------------- /include/boost/describe/modifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/modifiers.hpp -------------------------------------------------------------------------------- /include/boost/describe/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/describe/operators.hpp -------------------------------------------------------------------------------- /include/boost/detail/container_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/detail/container_fwd.hpp -------------------------------------------------------------------------------- /include/boost/detail/select_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/detail/select_type.hpp -------------------------------------------------------------------------------- /include/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /include/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/exception/exception.hpp -------------------------------------------------------------------------------- /include/boost/functional/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/functional/hash.hpp -------------------------------------------------------------------------------- /include/boost/functional/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/functional/hash_fwd.hpp -------------------------------------------------------------------------------- /include/boost/integer/static_log2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/integer/static_log2.hpp -------------------------------------------------------------------------------- /include/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/any_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/any_hook.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/avl_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/avl_set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/avl_set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/avl_set_hook.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/avltree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/avltree.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/avltree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/avltree_algorithms.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/bs_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/bs_set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/bs_set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/bs_set_hook.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/bstree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/bstree.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/bstree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/bstree_algorithms.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/algo_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/algo_type.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/algorithm.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/assert.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/config_end.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/hook_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/hook_traits.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/iiterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/iiterator.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/iterator.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/list_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/list_node.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/math.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/mpl.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/node_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/node_holder.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/rbtree_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/rbtree_node.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/size_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/size_holder.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/slist_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/slist_node.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/std_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/std_fwd.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/tree_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/tree_node.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/twin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/twin.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/uncast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/uncast.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/detail/workaround.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/hashtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/hashtable.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/intrusive_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/intrusive_fwd.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/link_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/link_mode.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/list.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/list_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/list_hook.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/options.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/pack_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/pack_options.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/parent_from_member.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/parent_from_member.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/pointer_plus_bits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/pointer_plus_bits.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/pointer_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/pointer_rebind.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/pointer_traits.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/priority_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/priority_compare.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/rbtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/rbtree.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/rbtree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/rbtree_algorithms.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/set_hook.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/sg_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/sg_set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/sgtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/sgtree.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/sgtree_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/sgtree_algorithms.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/slist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/slist.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/slist_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/slist_hook.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/splay_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/splay_set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/splaytree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/splaytree.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/treap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/treap.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/treap_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/treap_algorithms.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/treap_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/treap_set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/unordered_set.hpp -------------------------------------------------------------------------------- /include/boost/intrusive/unordered_set_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/intrusive/unordered_set_hook.hpp -------------------------------------------------------------------------------- /include/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/limits.hpp -------------------------------------------------------------------------------- /include/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /include/boost/move/algo/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/algo/move.hpp -------------------------------------------------------------------------------- /include/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /include/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/core.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/addressof.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/config_begin.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/config_end.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/force_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/force_ptr.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/iterator_traits.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/meta_utils.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/meta_utils_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/meta_utils_core.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/placement_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/placement_new.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/pointer_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/pointer_element.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/reverse_iterator.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/std_ns_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/std_ns_begin.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/std_ns_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/std_ns_end.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/to_raw_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/to_raw_pointer.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/type_traits.hpp -------------------------------------------------------------------------------- /include/boost/move/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/detail/workaround.hpp -------------------------------------------------------------------------------- /include/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/iterator.hpp -------------------------------------------------------------------------------- /include/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/move.hpp -------------------------------------------------------------------------------- /include/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/traits.hpp -------------------------------------------------------------------------------- /include/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/utility.hpp -------------------------------------------------------------------------------- /include/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /include/boost/mp11/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/algorithm.hpp -------------------------------------------------------------------------------- /include/boost/mp11/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/bind.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/config.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_append.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_copy_if.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_count.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_defer.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_fold.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_front.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_is_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_is_list.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_is_value_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_is_value_list.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_list.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_list_v.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_list_v.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_map_find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_map_find.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_min_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_min_element.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_plus.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_remove_if.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_rename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_rename.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_value.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_void.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mp_with_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mp_with_index.hpp -------------------------------------------------------------------------------- /include/boost/mp11/detail/mpl_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/detail/mpl_common.hpp -------------------------------------------------------------------------------- /include/boost/mp11/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/function.hpp -------------------------------------------------------------------------------- /include/boost/mp11/integer_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/integer_sequence.hpp -------------------------------------------------------------------------------- /include/boost/mp11/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/integral.hpp -------------------------------------------------------------------------------- /include/boost/mp11/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/list.hpp -------------------------------------------------------------------------------- /include/boost/mp11/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/set.hpp -------------------------------------------------------------------------------- /include/boost/mp11/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/utility.hpp -------------------------------------------------------------------------------- /include/boost/mp11/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/mp11/version.hpp -------------------------------------------------------------------------------- /include/boost/pointer_to_other.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/pointer_to_other.hpp -------------------------------------------------------------------------------- /include/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef.h -------------------------------------------------------------------------------- /include/boost/predef/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/alpha.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/arm.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/blackfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/blackfin.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/convex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/convex.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/e2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/e2k.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/ia64.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/loongarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/loongarch.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/m68k.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/mips.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/parisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/parisc.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/ppc.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/ptx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/ptx.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/pyramid.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/riscv.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/rs6k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/rs6k.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/sparc.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/superh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/superh.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/sys370.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/sys370.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/sys390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/sys390.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/x86.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/x86/32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/x86/32.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/x86/64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/x86/64.h -------------------------------------------------------------------------------- /include/boost/predef/architecture/z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/architecture/z.h -------------------------------------------------------------------------------- /include/boost/predef/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/borland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/borland.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/clang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/clang.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/comeau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/comeau.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/compaq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/compaq.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/diab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/diab.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/digitalmars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/digitalmars.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/dignus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/dignus.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/edg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/edg.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/ekopath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/ekopath.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/gcc.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/gcc_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/gcc_xml.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/greenhills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/greenhills.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/hp_acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/hp_acc.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/iar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/iar.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/ibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/ibm.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/intel.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/kai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/kai.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/llvm.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/metaware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/metaware.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/metrowerks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/metrowerks.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/microtec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/microtec.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/mpw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/mpw.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/nvcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/nvcc.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/palm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/palm.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/pgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/pgi.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/sgi_mipspro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/sgi_mipspro.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/sunpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/sunpro.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/tendra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/tendra.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/visualc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/visualc.h -------------------------------------------------------------------------------- /include/boost/predef/compiler/watcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/compiler/watcom.h -------------------------------------------------------------------------------- /include/boost/predef/detail/_cassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/detail/_cassert.h -------------------------------------------------------------------------------- /include/boost/predef/detail/_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/detail/_exception.h -------------------------------------------------------------------------------- /include/boost/predef/detail/comp_detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/detail/comp_detected.h -------------------------------------------------------------------------------- /include/boost/predef/detail/os_detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/detail/os_detected.h -------------------------------------------------------------------------------- /include/boost/predef/detail/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/detail/test.h -------------------------------------------------------------------------------- /include/boost/predef/detail/test_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/detail/test_def.h -------------------------------------------------------------------------------- /include/boost/predef/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/hardware.h -------------------------------------------------------------------------------- /include/boost/predef/hardware/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/hardware/simd.h -------------------------------------------------------------------------------- /include/boost/predef/hardware/simd/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/hardware/simd/arm.h -------------------------------------------------------------------------------- /include/boost/predef/hardware/simd/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/hardware/simd/ppc.h -------------------------------------------------------------------------------- /include/boost/predef/hardware/simd/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/hardware/simd/x86.h -------------------------------------------------------------------------------- /include/boost/predef/hardware/simd/x86_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/hardware/simd/x86_amd.h -------------------------------------------------------------------------------- /include/boost/predef/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/language.h -------------------------------------------------------------------------------- /include/boost/predef/language/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/language/cuda.h -------------------------------------------------------------------------------- /include/boost/predef/language/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/language/objc.h -------------------------------------------------------------------------------- /include/boost/predef/language/stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/language/stdc.h -------------------------------------------------------------------------------- /include/boost/predef/language/stdcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/language/stdcpp.h -------------------------------------------------------------------------------- /include/boost/predef/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library.h -------------------------------------------------------------------------------- /include/boost/predef/library/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c.h -------------------------------------------------------------------------------- /include/boost/predef/library/c/_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c/_prefix.h -------------------------------------------------------------------------------- /include/boost/predef/library/c/cloudabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c/cloudabi.h -------------------------------------------------------------------------------- /include/boost/predef/library/c/gnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c/gnu.h -------------------------------------------------------------------------------- /include/boost/predef/library/c/uc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c/uc.h -------------------------------------------------------------------------------- /include/boost/predef/library/c/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c/vms.h -------------------------------------------------------------------------------- /include/boost/predef/library/c/zos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/c/zos.h -------------------------------------------------------------------------------- /include/boost/predef/library/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/_prefix.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/cxx.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/dinkumware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/dinkumware.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/libcomo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/libcomo.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/modena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/modena.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/msl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/msl.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/roguewave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/roguewave.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/sgi.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/stdcpp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/stdcpp3.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/stlport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/stlport.h -------------------------------------------------------------------------------- /include/boost/predef/library/std/vacpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/library/std/vacpp.h -------------------------------------------------------------------------------- /include/boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/make.h -------------------------------------------------------------------------------- /include/boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os.h -------------------------------------------------------------------------------- /include/boost/predef/os/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/aix.h -------------------------------------------------------------------------------- /include/boost/predef/os/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/amigaos.h -------------------------------------------------------------------------------- /include/boost/predef/os/beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/beos.h -------------------------------------------------------------------------------- /include/boost/predef/os/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/bsd.h -------------------------------------------------------------------------------- /include/boost/predef/os/bsd/bsdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/bsd/bsdi.h -------------------------------------------------------------------------------- /include/boost/predef/os/bsd/dragonfly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/bsd/dragonfly.h -------------------------------------------------------------------------------- /include/boost/predef/os/bsd/free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/bsd/free.h -------------------------------------------------------------------------------- /include/boost/predef/os/bsd/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/bsd/net.h -------------------------------------------------------------------------------- /include/boost/predef/os/bsd/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/bsd/open.h -------------------------------------------------------------------------------- /include/boost/predef/os/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/cygwin.h -------------------------------------------------------------------------------- /include/boost/predef/os/haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/haiku.h -------------------------------------------------------------------------------- /include/boost/predef/os/hpux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/hpux.h -------------------------------------------------------------------------------- /include/boost/predef/os/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/ios.h -------------------------------------------------------------------------------- /include/boost/predef/os/irix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/irix.h -------------------------------------------------------------------------------- /include/boost/predef/os/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/linux.h -------------------------------------------------------------------------------- /include/boost/predef/os/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/macos.h -------------------------------------------------------------------------------- /include/boost/predef/os/os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/os400.h -------------------------------------------------------------------------------- /include/boost/predef/os/qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/qnxnto.h -------------------------------------------------------------------------------- /include/boost/predef/os/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/solaris.h -------------------------------------------------------------------------------- /include/boost/predef/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/unix.h -------------------------------------------------------------------------------- /include/boost/predef/os/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/vms.h -------------------------------------------------------------------------------- /include/boost/predef/os/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/os/windows.h -------------------------------------------------------------------------------- /include/boost/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/other.h -------------------------------------------------------------------------------- /include/boost/predef/other/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/other/endian.h -------------------------------------------------------------------------------- /include/boost/predef/other/wordsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/other/wordsize.h -------------------------------------------------------------------------------- /include/boost/predef/other/workaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/other/workaround.h -------------------------------------------------------------------------------- /include/boost/predef/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform.h -------------------------------------------------------------------------------- /include/boost/predef/platform/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/android.h -------------------------------------------------------------------------------- /include/boost/predef/platform/cloudabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/cloudabi.h -------------------------------------------------------------------------------- /include/boost/predef/platform/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/ios.h -------------------------------------------------------------------------------- /include/boost/predef/platform/mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/mingw.h -------------------------------------------------------------------------------- /include/boost/predef/platform/mingw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/mingw32.h -------------------------------------------------------------------------------- /include/boost/predef/platform/mingw64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/mingw64.h -------------------------------------------------------------------------------- /include/boost/predef/platform/windows_phone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/windows_phone.h -------------------------------------------------------------------------------- /include/boost/predef/platform/windows_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/windows_server.h -------------------------------------------------------------------------------- /include/boost/predef/platform/windows_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/windows_store.h -------------------------------------------------------------------------------- /include/boost/predef/platform/windows_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/windows_system.h -------------------------------------------------------------------------------- /include/boost/predef/platform/windows_uwp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/platform/windows_uwp.h -------------------------------------------------------------------------------- /include/boost/predef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/version.h -------------------------------------------------------------------------------- /include/boost/predef/version_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/predef/version_number.h -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/arithmetic.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/arithmetic/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/arithmetic/div.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/enum.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/insert.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/remove.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/array/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/array/to_seq.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/assert_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/assert_msg.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/comma.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/comparison.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/control.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/debug.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/debug/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/debug/assert.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/debug/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/debug/line.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/detail/null.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/detail/split.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/enum_shifted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/enum_shifted.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/expand.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/facilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/facilities.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/iteration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/iteration.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/library.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/limits.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/append.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/at.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/cat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/enum.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/filter.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/first_n.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/rest_n.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/size.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/list/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/list/to_seq.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/nor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical/nor.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical/not.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical/or.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/logical/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/logical/xor.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/max.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/min.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/punctuation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/punctuation.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repeat_2nd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/repeat_2nd.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repeat_3rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/repeat_3rd.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/repetition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/repetition.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/selection.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/cat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/filter.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/first_n.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/for_each.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/insert.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/pop_back.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/remove.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/replace.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/reverse.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/to_array.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/to_list.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/seq/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/seq/to_tuple.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/slot.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/slot/counter.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/enum.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/insert.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/remove.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/tuple/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/tuple/to_seq.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/variadic.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/while.hpp -------------------------------------------------------------------------------- /include/boost/preprocessor/wstringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/preprocessor/wstringize.hpp -------------------------------------------------------------------------------- /include/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/ref.hpp -------------------------------------------------------------------------------- /include/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/static_assert.hpp -------------------------------------------------------------------------------- /include/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/swap.hpp -------------------------------------------------------------------------------- /include/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/throw_exception.hpp -------------------------------------------------------------------------------- /include/boost/tuple/detail/tuple_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/tuple/detail/tuple_basic.hpp -------------------------------------------------------------------------------- /include/boost/tuple/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/tuple/tuple.hpp -------------------------------------------------------------------------------- /include/boost/tuple/tuple_comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/tuple/tuple_comparison.hpp -------------------------------------------------------------------------------- /include/boost/tuple/tuple_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/tuple/tuple_io.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/add_const.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/add_cv.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/add_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/add_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/add_volatile.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/alignment_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/alignment_of.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/array_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/array_traits.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/common_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/common_type.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/conditional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/conditional.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/conjunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/conjunction.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/copy_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/copy_cv.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/copy_cv_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/copy_cv_ref.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/cv_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/cv_traits.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/decay.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/declval.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/detail/config.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/ice_eq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/detail/ice_eq.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detail/ice_or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/detail/ice_or.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/detected.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/detected_or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/detected_or.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/disjunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/disjunction.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/enable_if.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/extent.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_bit_and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_bit_and.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_bit_or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_bit_or.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_bit_xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_bit_xor.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_divides.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_equal_to.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_greater.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_less.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_minus.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_modulus.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_negate.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_operator.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/has_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/has_plus.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_arithmetic.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_assignable.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_base_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_base_of.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_complete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_complete.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_complex.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_compound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_compound.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_detected.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_final.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_final.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_float.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_object.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_signed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_signed.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_stateless.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_stateless.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_unsigned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_unsigned.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/make_signed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/make_signed.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/make_unsigned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/make_unsigned.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/make_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/make_void.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/negation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/negation.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/nonesuch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/nonesuch.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/object_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/object_traits.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/promote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/promote.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/remove_bounds.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/remove_const.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_cv_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/remove_cv_ref.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/remove_extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/remove_extent.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/same_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/same_traits.hpp -------------------------------------------------------------------------------- /include/boost/type_traits/type_identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/type_traits/type_identity.hpp -------------------------------------------------------------------------------- /include/boost/unordered/detail/fca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/detail/fca.hpp -------------------------------------------------------------------------------- /include/boost/unordered/detail/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/detail/fwd.hpp -------------------------------------------------------------------------------- /include/boost/unordered/detail/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/detail/map.hpp -------------------------------------------------------------------------------- /include/boost/unordered/detail/mulx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/detail/mulx.hpp -------------------------------------------------------------------------------- /include/boost/unordered/detail/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/detail/set.hpp -------------------------------------------------------------------------------- /include/boost/unordered/detail/xmx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/detail/xmx.hpp -------------------------------------------------------------------------------- /include/boost/unordered/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/unordered_map.hpp -------------------------------------------------------------------------------- /include/boost/unordered/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered/unordered_set.hpp -------------------------------------------------------------------------------- /include/boost/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered_map.hpp -------------------------------------------------------------------------------- /include/boost/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/unordered_set.hpp -------------------------------------------------------------------------------- /include/boost/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/utility/addressof.hpp -------------------------------------------------------------------------------- /include/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /include/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/utility/swap.hpp -------------------------------------------------------------------------------- /include/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/include/boost/version.hpp -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /repltest/master/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/master/buildout.cfg -------------------------------------------------------------------------------- /repltest/master/notes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/master/notes.sql -------------------------------------------------------------------------------- /repltest/master/replicas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/master/replicas.conf -------------------------------------------------------------------------------- /repltest/my.cnf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/my.cnf.in -------------------------------------------------------------------------------- /repltest/mysql-no-read-etc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/mysql-no-read-etc.patch -------------------------------------------------------------------------------- /repltest/slave/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/slave/buildout.cfg -------------------------------------------------------------------------------- /repltest/slave/notes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/repltest/slave/notes.sql -------------------------------------------------------------------------------- /scripts/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/install.ps1 -------------------------------------------------------------------------------- /scripts/releases/geventrel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/releases/geventrel.sh -------------------------------------------------------------------------------- /scripts/releases/geventreleases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/releases/geventreleases.sh -------------------------------------------------------------------------------- /scripts/releases/make-manylinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/releases/make-manylinux -------------------------------------------------------------------------------- /scripts/releases/relstoragerel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/releases/relstoragerel.sh -------------------------------------------------------------------------------- /scripts/releases/relstoragereleases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/releases/relstoragereleases.sh -------------------------------------------------------------------------------- /scripts/util/zodbgcrecover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/scripts/util/zodbgcrecover.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/setup.py -------------------------------------------------------------------------------- /src/relstorage/.gitignore: -------------------------------------------------------------------------------- 1 | _inthashmap.cpp 2 | *.html 3 | -------------------------------------------------------------------------------- /src/relstorage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/__init__.py -------------------------------------------------------------------------------- /src/relstorage/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_compat.py -------------------------------------------------------------------------------- /src/relstorage/_inthashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_inthashmap.h -------------------------------------------------------------------------------- /src/relstorage/_inthashmap.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_inthashmap.pxd -------------------------------------------------------------------------------- /src/relstorage/_inthashmap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_inthashmap.pyx -------------------------------------------------------------------------------- /src/relstorage/_mvcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_mvcc.py -------------------------------------------------------------------------------- /src/relstorage/_rs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_rs_types.h -------------------------------------------------------------------------------- /src/relstorage/_rs_types.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_rs_types.pxd -------------------------------------------------------------------------------- /src/relstorage/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/_util.py -------------------------------------------------------------------------------- /src/relstorage/adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/__init__.py -------------------------------------------------------------------------------- /src/relstorage/adapters/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/_util.py -------------------------------------------------------------------------------- /src/relstorage/adapters/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/adapter.py -------------------------------------------------------------------------------- /src/relstorage/adapters/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/batch.py -------------------------------------------------------------------------------- /src/relstorage/adapters/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/connections.py -------------------------------------------------------------------------------- /src/relstorage/adapters/connmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/connmanager.py -------------------------------------------------------------------------------- /src/relstorage/adapters/dbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/dbiter.py -------------------------------------------------------------------------------- /src/relstorage/adapters/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/drivers.py -------------------------------------------------------------------------------- /src/relstorage/adapters/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/interfaces.py -------------------------------------------------------------------------------- /src/relstorage/adapters/locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/locker.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mover.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/__init__.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/adapter.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/drivers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/locker.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/mover.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/packundo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/packundo.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/procs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/procs/hf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/procs/hp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/schema.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/stats.py -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/mysql/txncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/mysql/txncontrol.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oidallocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oidallocator.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/__init__.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/adapter.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/batch.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/dialect.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/drivers.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/locker.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/mover.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/packundo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/packundo.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/schema.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/oracle/stats.py -------------------------------------------------------------------------------- /src/relstorage/adapters/oracle/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Oracle test package. 2 | -------------------------------------------------------------------------------- /src/relstorage/adapters/packundo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/packundo.py -------------------------------------------------------------------------------- /src/relstorage/adapters/poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/poller.py -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/postgresql/batch.py -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/drivers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/postgresql/mover.py -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/procs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/procs/hf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/procs/hp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/postgresql/stats.py -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/postgresql/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/postgresql/util.py -------------------------------------------------------------------------------- /src/relstorage/adapters/replica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/replica.py -------------------------------------------------------------------------------- /src/relstorage/adapters/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/schema.py -------------------------------------------------------------------------------- /src/relstorage/adapters/scriptrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/scriptrunner.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/__init__.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/_util.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/ast.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/dialect.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/expressions.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/functions.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/insert.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/interfaces.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/query.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/schema.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/select.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/sql/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sql/types.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/__init__.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/adapter.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/batch.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/dialect.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/drivers.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/locker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/locker.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/mover.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/poller.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/schema.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/sqlite/stats.py -------------------------------------------------------------------------------- /src/relstorage/adapters/sqlite/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/adapters/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/stats.py -------------------------------------------------------------------------------- /src/relstorage/adapters/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests package. 2 | -------------------------------------------------------------------------------- /src/relstorage/adapters/tests/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/tests/test_batch.py -------------------------------------------------------------------------------- /src/relstorage/adapters/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/tests/test_util.py -------------------------------------------------------------------------------- /src/relstorage/adapters/txncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/adapters/txncontrol.py -------------------------------------------------------------------------------- /src/relstorage/blobhelper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/blobhelper/__init__.py -------------------------------------------------------------------------------- /src/relstorage/blobhelper/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/blobhelper/abstract.py -------------------------------------------------------------------------------- /src/relstorage/blobhelper/cached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/blobhelper/cached.py -------------------------------------------------------------------------------- /src/relstorage/blobhelper/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/blobhelper/interfaces.py -------------------------------------------------------------------------------- /src/relstorage/blobhelper/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/blobhelper/shared.py -------------------------------------------------------------------------------- /src/relstorage/blobhelper/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/relstorage/blobhelper/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/blobhelper/util.py -------------------------------------------------------------------------------- /src/relstorage/cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/.gitignore -------------------------------------------------------------------------------- /src/relstorage/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/__init__.py -------------------------------------------------------------------------------- /src/relstorage/cache/_objectindex.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/_objectindex.pyx -------------------------------------------------------------------------------- /src/relstorage/cache/c_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/c_cache.cpp -------------------------------------------------------------------------------- /src/relstorage/cache/c_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/c_cache.h -------------------------------------------------------------------------------- /src/relstorage/cache/c_cache.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/c_cache.pxd -------------------------------------------------------------------------------- /src/relstorage/cache/cache.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/cache.pyx -------------------------------------------------------------------------------- /src/relstorage/cache/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/interfaces.py -------------------------------------------------------------------------------- /src/relstorage/cache/local_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/local_client.py -------------------------------------------------------------------------------- /src/relstorage/cache/local_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/local_database.py -------------------------------------------------------------------------------- /src/relstorage/cache/memcache_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/memcache_client.py -------------------------------------------------------------------------------- /src/relstorage/cache/mvcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/mvcc.py -------------------------------------------------------------------------------- /src/relstorage/cache/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/persistence.py -------------------------------------------------------------------------------- /src/relstorage/cache/storage_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/storage_cache.py -------------------------------------------------------------------------------- /src/relstorage/cache/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/tests/__init__.py -------------------------------------------------------------------------------- /src/relstorage/cache/tests/bench_mvcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/tests/bench_mvcc.py -------------------------------------------------------------------------------- /src/relstorage/cache/tests/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/tests/benchmarks.py -------------------------------------------------------------------------------- /src/relstorage/cache/tests/test_mvcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/tests/test_mvcc.py -------------------------------------------------------------------------------- /src/relstorage/cache/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/cache/trace.py -------------------------------------------------------------------------------- /src/relstorage/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/component.xml -------------------------------------------------------------------------------- /src/relstorage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/config.py -------------------------------------------------------------------------------- /src/relstorage/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/interfaces.py -------------------------------------------------------------------------------- /src/relstorage/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/options.py -------------------------------------------------------------------------------- /src/relstorage/pylibmc_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/pylibmc_wrapper.py -------------------------------------------------------------------------------- /src/relstorage/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/__init__.py -------------------------------------------------------------------------------- /src/relstorage/storage/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/copy.py -------------------------------------------------------------------------------- /src/relstorage/storage/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/history.py -------------------------------------------------------------------------------- /src/relstorage/storage/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/interfaces.py -------------------------------------------------------------------------------- /src/relstorage/storage/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/legacy.py -------------------------------------------------------------------------------- /src/relstorage/storage/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/load.py -------------------------------------------------------------------------------- /src/relstorage/storage/oid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/oid.py -------------------------------------------------------------------------------- /src/relstorage/storage/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/pack.py -------------------------------------------------------------------------------- /src/relstorage/storage/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/store.py -------------------------------------------------------------------------------- /src/relstorage/storage/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tests/__init__.py -------------------------------------------------------------------------------- /src/relstorage/storage/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tests/test_util.py -------------------------------------------------------------------------------- /src/relstorage/storage/tpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tpc/__init__.py -------------------------------------------------------------------------------- /src/relstorage/storage/tpc/begin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tpc/begin.py -------------------------------------------------------------------------------- /src/relstorage/storage/tpc/finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tpc/finish.py -------------------------------------------------------------------------------- /src/relstorage/storage/tpc/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tpc/restore.py -------------------------------------------------------------------------------- /src/relstorage/storage/tpc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /src/relstorage/storage/tpc/vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/tpc/vote.py -------------------------------------------------------------------------------- /src/relstorage/storage/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/storage/util.py -------------------------------------------------------------------------------- /src/relstorage/tests/RecoveryStorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/RecoveryStorage.py -------------------------------------------------------------------------------- /src/relstorage/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/__init__.py -------------------------------------------------------------------------------- /src/relstorage/tests/bigmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/bigmark.py -------------------------------------------------------------------------------- /src/relstorage/tests/bigpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/bigpack.py -------------------------------------------------------------------------------- /src/relstorage/tests/blob/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/blob/__init__.py -------------------------------------------------------------------------------- /src/relstorage/tests/blob/blob_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/blob/blob_cache.py -------------------------------------------------------------------------------- /src/relstorage/tests/blob/blob_packing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/blob/blob_packing.py -------------------------------------------------------------------------------- /src/relstorage/tests/blob/testblob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/blob/testblob.py -------------------------------------------------------------------------------- /src/relstorage/tests/fakecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/fakecache.py -------------------------------------------------------------------------------- /src/relstorage/tests/hftestbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/hftestbase.py -------------------------------------------------------------------------------- /src/relstorage/tests/hptestbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/hptestbase.py -------------------------------------------------------------------------------- /src/relstorage/tests/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/locking.py -------------------------------------------------------------------------------- /src/relstorage/tests/packstresstest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/packstresstest.py -------------------------------------------------------------------------------- /src/relstorage/tests/packundo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/packundo.py -------------------------------------------------------------------------------- /src/relstorage/tests/persistentcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/persistentcache.py -------------------------------------------------------------------------------- /src/relstorage/tests/reltestbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/reltestbase.py -------------------------------------------------------------------------------- /src/relstorage/tests/replicas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/replicas.conf -------------------------------------------------------------------------------- /src/relstorage/tests/ro_replicas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/ro_replicas.conf -------------------------------------------------------------------------------- /src/relstorage/tests/test__inthashmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test__inthashmap.py -------------------------------------------------------------------------------- /src/relstorage/tests/test__mvcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test__mvcc.py -------------------------------------------------------------------------------- /src/relstorage/tests/test__util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test__util.py -------------------------------------------------------------------------------- /src/relstorage/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test_config.py -------------------------------------------------------------------------------- /src/relstorage/tests/test_treemark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test_treemark.py -------------------------------------------------------------------------------- /src/relstorage/tests/test_zodbconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test_zodbconvert.py -------------------------------------------------------------------------------- /src/relstorage/tests/test_zodbpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test_zodbpack.py -------------------------------------------------------------------------------- /src/relstorage/tests/test_zodburi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/test_zodburi.py -------------------------------------------------------------------------------- /src/relstorage/tests/testmysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/testmysql.py -------------------------------------------------------------------------------- /src/relstorage/tests/testoracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/testoracle.py -------------------------------------------------------------------------------- /src/relstorage/tests/testpostgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/testpostgresql.py -------------------------------------------------------------------------------- /src/relstorage/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/tests/util.py -------------------------------------------------------------------------------- /src/relstorage/treemark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/treemark.py -------------------------------------------------------------------------------- /src/relstorage/zodbconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/zodbconvert.py -------------------------------------------------------------------------------- /src/relstorage/zodbpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/zodbpack.py -------------------------------------------------------------------------------- /src/relstorage/zodburi_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/src/relstorage/zodburi_resolver.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zodb/relstorage/HEAD/tox.ini -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 4.2.1.dev0 2 | --------------------------------------------------------------------------------