LinkPython-extern 1.1.0__tar.gz → 1.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/.gitignore +5 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/CMakeLists.txt +1 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/PKG-INFO +5 -2
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.clang-tidy +2 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.pre-commit-config.yaml +7 -7
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/CMakeLists.txt +3 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/cast.h +9 -2
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/class.h +16 -3
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/common.h +22 -3
- linkpython_extern-1.1.1/modules/pybind11/include/pybind11/detail/cpp_conduit.h +77 -0
- linkpython_extern-1.1.1/modules/pybind11/include/pybind11/detail/exception_translation.h +71 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/init.h +4 -2
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/internals.h +30 -13
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/type_caster_base.h +44 -63
- linkpython_extern-1.1.1/modules/pybind11/include/pybind11/detail/value_and_holder.h +77 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen/matrix.h +2 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen/tensor.h +2 -4
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/functional.h +45 -34
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/gil_safe_call_once.h +10 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/numpy.h +6 -2
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/pybind11.h +7 -55
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/pytypes.h +2 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/stl/filesystem.h +16 -7
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/stl_bind.h +1 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/typing.h +5 -2
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/__main__.py +26 -3
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/_version.py +1 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11Common.cmake +29 -3
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11Config.cmake.in +1 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/pyproject.toml +9 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src/Link.cpp +1 -1
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/PKG-INFO +5 -2
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/SOURCES.txt +4 -0
- linkpython_extern-1.1.1/src-py/LinkPython_extern.egg-info/requires.txt +3 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/.gitmodules +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/LICENSE.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/MANIFEST.in +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/README.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/example/LinkHut.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.appveyor.yml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.clang-format +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.git +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/.gitmodules +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/AbletonLinkConfig.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/CMakeLists.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/CONTRIBUTING.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/GNU-GPL-v2.0.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/LICENSE.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/README.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/TEST-PLAN.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/cmake_include/AsioStandaloneConfig.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/cmake_include/CatchConfig.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/cmake_include/ConfigureCompileFlags.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/.clang-format +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/CMakeLists.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/README.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/abl_link.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/include/abl_link.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/extensions/abl_link/src/abl_link.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/CMakeLists.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/Link.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/Link.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/InterfaceScanner.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/IpV4Interface.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/MessageTypes.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/NetworkByteStreamSerializable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/Payload.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/PeerGateway.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/PeerGateways.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/Service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/UdpMessenger.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/test/Interface.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/test/PayloadEntries.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/test/Socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/discovery/v1/Messages.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Beats.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/ClientSessionTimelines.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Controller.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Gateway.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/GhostXForm.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/HostTimeFilter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/LinearRegression.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Measurement.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/MeasurementEndpointV4.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/MeasurementService.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Median.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/NodeId.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/NodeState.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Optional.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/PayloadEntries.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/PeerState.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Peers.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Phase.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/PingResponder.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/SessionId.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/SessionState.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Sessions.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/StartStopState.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Tempo.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/Timeline.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/TripleBuffer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/link/v1/Messages.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/Config.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/AsioTimer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/AsioWrapper.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/Context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/LockFreeCallbackDispatcher.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/Socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/asio/Util.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/darwin/Clock.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/darwin/Darwin.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/darwin/ThreadFactory.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Clock.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Esp32.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/LockFreeCallbackDispatcher.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/Random.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/esp32/ScanIpIfAddrs.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/linux/Clock.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/linux/Linux.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/linux/ThreadFactory.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/posix/ScanIpIfAddrs.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/stl/Clock.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/stl/Random.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/Clock.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/ScanIpIfAddrs.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/ThreadFactory.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/platforms/windows/Windows.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/CatchWrapper.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/Context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/Fixture.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/SchedulerTree.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/test/serial_io/Timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/Injected.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/Log.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/SafeAsyncHandler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/SampleTiming.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/test/IoService.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/include/ableton/util/test/Timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.appveyor.yml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.cirrus.yml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.git +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/COPYING +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/INSTALL +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/LICENSE_1_0.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/Makefile.am +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/README +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/asio.manifest +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/autogen.sh +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/boost_asio.manifest +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/boostify.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/configure.ac +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/Makefile.am +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/any_io_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associated_allocator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associated_cancellation_slot.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associated_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/associator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/async_result.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/awaitable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_datagram_socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_deadline_timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_file.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_io_object.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_random_access_file.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_raw_socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_readable_pipe.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_seq_packet_socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_serial_port.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_signal_set.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket_acceptor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket_iostream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_socket_streambuf.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_stream_file.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_stream_socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_streambuf.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_streambuf_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_waitable_timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/basic_writable_pipe.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/bind_allocator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/bind_cancellation_slot.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/bind_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffer_registration.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_read_stream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_read_stream_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_stream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_stream_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_write_stream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffered_write_stream_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/buffers_iterator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/cancellation_signal.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/cancellation_state.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/cancellation_type.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/co_spawn.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/completion_condition.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/compose.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/connect.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/connect_pipe.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/coroutine.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/deadline_timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/defer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detached.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/array.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/array_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/assert.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/atomic_count.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/base_from_cancellation_state.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/base_from_completion_cond.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/bind_handler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/blocking_executor_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/buffer_resize_guard.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/buffer_sequence_adapter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/buffered_stream_storage.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/bulk_executor_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/call_stack.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/chrono.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/chrono_time_traits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/completion_handler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/concurrency_hint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/conditionally_enabled_event.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/conditionally_enabled_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/config.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/consuming_buffers.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/cstddef.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/cstdint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/date_time_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/deadline_timer_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/dependent_type.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/descriptor_ops.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/descriptor_read_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/descriptor_write_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/dev_poll_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/epoll_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/event.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/eventfd_select_interrupter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/executor_function.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/executor_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/fd_set_adapter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/functional.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/future.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_arm_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_hppa_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_sync_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/gcc_x86_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/global.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_alloc_helpers.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_cont_helpers.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_invoke_helpers.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_tracking.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_type_requirements.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/handler_work.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/hash_map.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/buffer_sequence_adapter.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/descriptor_ops.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/dev_poll_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/dev_poll_reactor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/epoll_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/epoll_reactor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/eventfd_select_interrupter.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/handler_tracking.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_descriptor_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_file_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/io_uring_socket_service_base.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/kqueue_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/kqueue_reactor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/null_event.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/pipe_select_interrupter.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_event.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_mutex.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_serial_port_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_thread.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/posix_tss_ptr.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/reactive_descriptor_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/reactive_socket_service_base.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/resolver_service_base.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/scheduler.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/select_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/select_reactor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/service_registry.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/service_registry.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/signal_set_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/socket_ops.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/socket_select_interrupter.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_executor_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_executor_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/strand_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/thread_context.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/throw_error.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/timer_queue_ptime.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/timer_queue_set.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_event.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_file_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_handle_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_io_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_io_context.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_serial_port_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_iocp_socket_service_base.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_mutex.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_object_handle_service.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_static_mutex.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_thread.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/win_tss_ptr.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winrt_ssocket_service_base.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winrt_timer_scheduler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winrt_timer_scheduler.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/impl/winsock_init.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_control.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_object_impl.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_read_at_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_read_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_write_at_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_descriptor_write_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_file_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_null_buffers_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_operation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_accept_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_connect_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_recv_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_recvfrom_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_recvmsg_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_send_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_sendto_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_socket_service_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/io_uring_wait_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/is_buffer_sequence.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/is_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/keyword_tss_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/kqueue_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/limits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/local_free_on_block_exit.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/macos_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/memory.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/non_const_lvalue.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/noncopyable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_event.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_global.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_signal_blocker.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_socket_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_static_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/null_tss_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/object_pool.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/old_win_sdk_compat.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/op_queue.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/operation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/pipe_select_interrupter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/pop_options.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_event.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_fd_set_adapter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_global.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_serial_port_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_signal_blocker.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_static_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/posix_tss_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/push_options.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_descriptor_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_null_buffers_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_accept_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_connect_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_recv_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_recvfrom_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_recvmsg_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_send_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_sendto_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_socket_service_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactive_wait_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactor_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/reactor_op_queue.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/recycling_allocator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/regex_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolve_endpoint_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolve_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolve_query_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolver_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/resolver_service_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler_operation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler_task.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scheduler_thread_info.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scoped_lock.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/scoped_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/select_interrupter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/select_reactor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/service_registry.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_blocker.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_handler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_init.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/signal_set_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_holder.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_ops.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_option.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_select_interrupter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/socket_types.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/solaris_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/source_location.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/static_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_event.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_global.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_static_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/std_thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/strand_executor_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/strand_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/string_view.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread_group.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/thread_info_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/throw_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/throw_exception.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue_ptime.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_queue_set.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_scheduler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/timer_scheduler_fwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/tss_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/type_traits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/variadic_templates.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wait_handler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wait_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_event.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_fd_set_adapter.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_fenced_block.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_global.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_file_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_handle_read_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_handle_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_handle_write_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_io_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_null_buffers_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_operation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_overlapped_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_overlapped_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_serial_port_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_accept_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_connect_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_recv_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_recvfrom_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_recvmsg_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_send_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_socket_service_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_thread_info.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_iocp_wait_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_object_handle_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_static_mutex.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/win_tss_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winapp_thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wince_thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_async_manager.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_async_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_resolve_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_resolver_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_socket_connect_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_socket_recv_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_socket_send_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_ssocket_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_ssocket_service_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_timer_scheduler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winrt_utils.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/winsock_init.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/work_dispatcher.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/detail/wrapped_handler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/dispatch.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/error_code.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/allocator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/any_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/bad_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/blocking.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/blocking_adaptation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/bulk_execute.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/bulk_guarantee.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/connect.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/context_as.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/as_invocable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/as_operation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/as_receiver.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/bulk_sender.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/submit_receiver.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/detail/void_receiver.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/execute.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/impl/bad_executor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/impl/receiver_invocation_error.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/invocable_archetype.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/mapping.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/occupancy.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/operation_state.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/outstanding_work.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/prefer_only.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/receiver.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/receiver_invocation_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/relationship.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/schedule.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/scheduler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/sender.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/set_done.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/set_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/set_value.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/start.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution/submit.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/execution_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/executor_work_guard.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/append.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/as_single.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/as_tuple.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/awaitable_operators.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/basic_channel.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/basic_concurrent_channel.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/cancellation_condition.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/channel.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/channel_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/channel_traits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/co_spawn.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/concurrent_channel.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/coro.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/coro_traits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/deferred.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_handler.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_message.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_operation.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_payload.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_receive_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_send_functions.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_send_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/channel_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/completion_handler_erasure.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/coro_promise_allocator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/has_signature.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/impl/channel_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/detail/partial_promise.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/append.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/as_single.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/as_tuple.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/channel_error.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/coro.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/deferred.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/parallel_group.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/prepend.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/promise.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/impl/use_coro.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/parallel_group.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/prepend.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/promise.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/experimental/use_coro.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/file_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/basic_endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/datagram_protocol.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/detail/endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/detail/impl/endpoint.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/raw_protocol.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/seq_packet_protocol.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/generic/stream_protocol.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/handler_alloc_hook.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/handler_continuation_hook.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/handler_invoke_hook.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/high_resolution_timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/any_io_executor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/awaitable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/buffered_read_stream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/buffered_write_stream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/cancellation_signal.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/co_spawn.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/compose.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/connect.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/connect_pipe.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/connect_pipe.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/defer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/detached.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/dispatch.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/error.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/error_code.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/execution_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/execution_context.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/executor.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/handler_alloc_hook.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/io_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/io_context.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/multiple_exceptions.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/post.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/read.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/read_at.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/read_until.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/redirect_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/serial_port_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/serial_port_base.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/spawn.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/src.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/system_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/system_context.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/system_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/thread_pool.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/thread_pool.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/use_awaitable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/use_future.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/write.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/impl/write_at.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_context_strand.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_service.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/io_service_strand.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v4.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v4_iterator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v4_range.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v6.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v6_iterator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/address_v6_range.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/bad_address_cast.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_entry.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_iterator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_query.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/basic_resolver_results.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/detail/endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/detail/impl/endpoint.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/detail/socket_option.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/host_name.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/icmp.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v4.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v4.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v6.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/address_v6.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/basic_endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/host_name.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v4.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v4.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v6.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/impl/network_v6.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/multicast.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/network_v4.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/network_v6.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/resolver_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/resolver_query_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/tcp.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/udp.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/unicast.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ip/v6_only.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_applicable_property.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_read_buffered.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/is_write_buffered.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/basic_endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/connect_pair.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/datagram_protocol.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/detail/endpoint.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/detail/impl/endpoint.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/local/stream_protocol.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/multiple_exceptions.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/packaged_task.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/placeholders.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/basic_descriptor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/basic_stream_descriptor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/descriptor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/descriptor_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/posix/stream_descriptor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/post.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/prefer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/query.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/random_access_file.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/read.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/read_at.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/read_until.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/readable_pipe.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/recycling_allocator.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/redirect_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/registered_buffer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/require.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/require_concept.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/serial_port.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/serial_port_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/signal_set.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/socket_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/spawn.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/context_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/buffered_handshake_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/engine.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/handshake_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/impl/engine.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/impl/openssl_init.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/io.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/openssl_init.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/openssl_types.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/password_callback.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/read_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/shutdown_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/stream_core.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/verify_callback.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/detail/write_op.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/host_name_verification.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/context.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/error.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/host_name_verification.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/rfc2818_verification.ipp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/impl/src.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/rfc2818_verification.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/stream.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/stream_base.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/verify_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl/verify_mode.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ssl.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/static_thread_pool.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/steady_timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/strand.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/stream_file.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/streambuf.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_error.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/system_timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/this_coro.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/thread.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/thread_pool.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/time_traits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/bulk_execute_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/bulk_execute_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/connect_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/connect_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/equality_comparable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/execute_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/execute_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/prefer_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/prefer_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/query_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/query_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/query_static_constexpr_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_concept_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_concept_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/require_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/schedule_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/schedule_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_done_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_done_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_error_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_error_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_value_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/set_value_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/start_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/start_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/static_query.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/static_require.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/static_require_concept.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/submit_free.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/traits/submit_member.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/buffer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/internet.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/io_context.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/net.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/netfwd.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/socket.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/ts/timer.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/unyield.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/use_awaitable.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/use_future.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/uses_executor.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/version.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/wait_traits.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_object_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_overlapped_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_random_access_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/basic_stream_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/object_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/overlapped_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/overlapped_ptr.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/random_access_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/windows/stream_handle.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/writable_pipe.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/write.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/write_at.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio/yield.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/include/asio.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/release.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/Makefile.am +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/Makefile.mgw +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/Makefile.msc +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/asio.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/asio_ssl.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/Jamfile.v2 +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asio.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asio.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asioref.sty +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/asioref.xsl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/boost_bind_dox.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/doxy2qbk.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/examples.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/history.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/index.xml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/makepdf.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/net_ts.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/noncopyable_dox.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/allocation.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op1.dot +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op1.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op2.dot +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/async_op2.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/basics.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/bsd_sockets.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/buffers.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/cancellation.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/concurrency_hint.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/coro.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/coroutine.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/cpp2011.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/cpp20_coroutines.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/handler_tracking.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/implementation.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/iostreams.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/line_based.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/allocators.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/associators.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_agent_chain.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_agent_model.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_agents.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_child_agent_chain.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_init_complete.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_model.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_phases.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_op_trivial_chain.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/async_ops.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/cancellation.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/child_agents.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/completion_token_model.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/completion_token_transform.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/completion_tokens.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/executors.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/higher_level_model.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/higher_levels.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model/library_elements.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/model.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/other_protocols.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/posix.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/proactor.dot +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/proactor.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/protocols.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/rationale.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/reactor.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/serial_ports.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/signals.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/spawn.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/ssl.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/strands.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/streams.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/sync_op.dot +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/sync_op.png +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/threads.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/timers.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview/windows.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/overview.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/platform_macros.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/platform_macros.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/project-root.jam +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/quickref.xml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/reference.dox +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/reference.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/reference.xsl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/release_checklist.htm +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AcceptHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AcceptToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AcceptableProtocol.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncRandomAccessReadDevice.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncRandomAccessWriteDevice.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncReadStream.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/AsyncWriteStream.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/BufferedHandshakeHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/BufferedHandshakeToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/CancellationHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/CancellationSlot.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/CompletionCondition.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConnectCondition.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConnectHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConnectToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ConstBufferSequence.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/DynamicBuffer.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/DynamicBuffer_v1.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/DynamicBuffer_v2.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Endpoint.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/EndpointSequence.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ExecutionContext.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Executor.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/GettableSerialPortOption.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/GettableSocketOption.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Handler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/HandshakeHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/HandshakeToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/InternetProtocol.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IoControlCommand.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IoObjectService.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IteratorConnectHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/IteratorConnectToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/LegacyCompletionHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/MoveAcceptHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/MoveAcceptToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/MutableBufferSequence.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/NullaryToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/OperationState.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ProtoAllocator.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Protocol.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/RangeConnectHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/RangeConnectToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ReadHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ReadToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Receiver.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ResolveHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ResolveToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Scheduler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Sender.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/Service.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SettableSerialPortOption.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SettableSocketOption.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ShutdownHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/ShutdownToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SignalHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SignalToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncRandomAccessReadDevice.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncRandomAccessWriteDevice.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncReadStream.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/SyncWriteStream.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/TimeTraits.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WaitHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WaitToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WaitTraits.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WriteHandler.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/WriteToken.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/asynchronous_operations.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/asynchronous_socket_operations.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/read_write_operations.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/requirements/synchronous_socket_operations.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/std_exception_dox.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/std_executors.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/tutorial.dox +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/tutorial.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/tutorial.xsl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/doc/using.qbk +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/tools/handlerlive.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/tools/handlertree.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/src/tools/handlerviz.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/modules/asio-standalone/asio/tsify.pl +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/CMakeLists.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_InterfaceScanner.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_Payload.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_PeerGateway.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_PeerGateways.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/tst_UdpMessenger.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/discovery/v1/tst_Messages.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Beats.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_ClientSessionTimelines.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Controller.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_HostTimeFilter.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_LinearRegression.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Measurement.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Median.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Peers.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Phase.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_PingResponder.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_StartStopState.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Tempo.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_Timeline.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/link/tst_TripleBuffer.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/test/catch/CatchMain.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/src/ableton/test/serial_io/SchedulerTree.cpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/link/third_party/catch/catch.hpp +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.appveyor.yml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.clang-format +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.cmake-format.yaml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.codespell-ignore-lines +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.git +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.gitattributes +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.gitignore +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.readthedocs.yml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/LICENSE +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/MANIFEST.in +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/README.rst +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/SECURITY.md +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/attr.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/buffer_info.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/chrono.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/common.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/complex.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/descr.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/typeid.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen/common.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eigen.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/embed.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/eval.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/gil.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/iostream.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/operators.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/options.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/stl.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/type_caster_pyobject_ptr.h +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/noxfile.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/__init__.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/commands.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/py.typed +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pybind11/setup_helpers.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/pyproject.toml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/setup.cfg +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/setup.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/FindCatch.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/FindEigen3.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/FindPythonLibsNew.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/JoinPaths.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/check-style.sh +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/cmake_uninstall.cmake.in +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/codespell_ignore_lines_from_errors.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/libsize.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/make_changelog.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11.pc.in +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11GuessPythonExtSuffix.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11NewTools.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pybind11Tools.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/pyproject.toml +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/setup_global.py.in +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/setup_main.py.in +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/tools/test-pybind11GuessPythonExtSuffix.cmake +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/setup.cfg +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/setup.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/dependency_links.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/LinkPython_extern.egg-info/top_level.txt +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/link/__init__.py +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/link/__init__.pyi +0 -0
- {linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/src-py/link/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: LinkPython-extern
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: A fork of the LinkPython wrapper for Ableton Link
|
|
5
5
|
Author: gonzaloflirt
|
|
6
6
|
Maintainer: thegamecracks
|
|
@@ -40,6 +40,9 @@ Classifier: Topic :: System :: Networking
|
|
|
40
40
|
Requires-Python: <3.14,>=3.7
|
|
41
41
|
Description-Content-Type: text/markdown
|
|
42
42
|
License-File: LICENSE.md
|
|
43
|
+
Provides-Extra: tests
|
|
44
|
+
Requires-Dist: pytest>=7.4.4; extra == "tests"
|
|
45
|
+
Dynamic: license-file
|
|
43
46
|
|
|
44
47
|
# Python wrapper for [Ableton Link][1]
|
|
45
48
|
|
|
@@ -57,10 +57,12 @@ Checks: |
|
|
|
57
57
|
readability-string-compare,
|
|
58
58
|
readability-suspicious-call-argument,
|
|
59
59
|
readability-uniqueptr-delete-release,
|
|
60
|
+
-bugprone-chained-comparison,
|
|
60
61
|
-bugprone-easily-swappable-parameters,
|
|
61
62
|
-bugprone-exception-escape,
|
|
62
63
|
-bugprone-reserved-identifier,
|
|
63
64
|
-bugprone-unused-raii,
|
|
65
|
+
-performance-enum-size,
|
|
64
66
|
|
|
65
67
|
CheckOptions:
|
|
66
68
|
- key: modernize-use-equals-default.IgnoreMacros
|
{linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/.pre-commit-config.yaml
RENAMED
|
@@ -25,14 +25,14 @@ repos:
|
|
|
25
25
|
|
|
26
26
|
# Clang format the codebase automatically
|
|
27
27
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
28
|
-
rev: "v18.1.
|
|
28
|
+
rev: "v18.1.8"
|
|
29
29
|
hooks:
|
|
30
30
|
- id: clang-format
|
|
31
31
|
types_or: [c++, c, cuda]
|
|
32
32
|
|
|
33
33
|
# Ruff, the Python auto-correcting linter/formatter written in Rust
|
|
34
34
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
35
|
-
rev: v0.
|
|
35
|
+
rev: v0.6.3
|
|
36
36
|
hooks:
|
|
37
37
|
- id: ruff
|
|
38
38
|
args: ["--fix", "--show-fixes"]
|
|
@@ -40,7 +40,7 @@ repos:
|
|
|
40
40
|
|
|
41
41
|
# Check static types with mypy
|
|
42
42
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
43
|
-
rev: "v1.
|
|
43
|
+
rev: "v1.11.2"
|
|
44
44
|
hooks:
|
|
45
45
|
- id: mypy
|
|
46
46
|
args: []
|
|
@@ -79,7 +79,7 @@ repos:
|
|
|
79
79
|
|
|
80
80
|
# Also code format the docs
|
|
81
81
|
- repo: https://github.com/adamchainz/blacken-docs
|
|
82
|
-
rev: "1.
|
|
82
|
+
rev: "1.18.0"
|
|
83
83
|
hooks:
|
|
84
84
|
- id: blacken-docs
|
|
85
85
|
additional_dependencies:
|
|
@@ -93,7 +93,7 @@ repos:
|
|
|
93
93
|
|
|
94
94
|
# Avoid directional quotes
|
|
95
95
|
- repo: https://github.com/sirosen/texthooks
|
|
96
|
-
rev: "0.6.
|
|
96
|
+
rev: "0.6.7"
|
|
97
97
|
hooks:
|
|
98
98
|
- id: fix-ligatures
|
|
99
99
|
- id: fix-smartquotes
|
|
@@ -142,14 +142,14 @@ repos:
|
|
|
142
142
|
|
|
143
143
|
# PyLint has native support - not always usable, but works for us
|
|
144
144
|
- repo: https://github.com/PyCQA/pylint
|
|
145
|
-
rev: "v3.2.
|
|
145
|
+
rev: "v3.2.7"
|
|
146
146
|
hooks:
|
|
147
147
|
- id: pylint
|
|
148
148
|
files: ^pybind11
|
|
149
149
|
|
|
150
150
|
# Check schemas on some of our YAML files
|
|
151
151
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
|
152
|
-
rev: 0.
|
|
152
|
+
rev: 0.29.2
|
|
153
153
|
hooks:
|
|
154
154
|
- id: check-readthedocs
|
|
155
155
|
- id: check-github-workflows
|
|
@@ -149,11 +149,14 @@ endif()
|
|
|
149
149
|
set(PYBIND11_HEADERS
|
|
150
150
|
include/pybind11/detail/class.h
|
|
151
151
|
include/pybind11/detail/common.h
|
|
152
|
+
include/pybind11/detail/cpp_conduit.h
|
|
152
153
|
include/pybind11/detail/descr.h
|
|
153
154
|
include/pybind11/detail/init.h
|
|
154
155
|
include/pybind11/detail/internals.h
|
|
155
156
|
include/pybind11/detail/type_caster_base.h
|
|
156
157
|
include/pybind11/detail/typeid.h
|
|
158
|
+
include/pybind11/detail/value_and_holder.h
|
|
159
|
+
include/pybind11/detail/exception_translation.h
|
|
157
160
|
include/pybind11/attr.h
|
|
158
161
|
include/pybind11/buffer_info.h
|
|
159
162
|
include/pybind11/cast.h
|
{linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/cast.h
RENAMED
|
@@ -740,6 +740,13 @@ class type_caster<std::pair<T1, T2>> : public tuple_caster<std::pair, T1, T2> {}
|
|
|
740
740
|
template <typename... Ts>
|
|
741
741
|
class type_caster<std::tuple<Ts...>> : public tuple_caster<std::tuple, Ts...> {};
|
|
742
742
|
|
|
743
|
+
template <>
|
|
744
|
+
class type_caster<std::tuple<>> : public tuple_caster<std::tuple> {
|
|
745
|
+
public:
|
|
746
|
+
// PEP 484 specifies this syntax for an empty tuple
|
|
747
|
+
static constexpr auto name = const_name("tuple[()]");
|
|
748
|
+
};
|
|
749
|
+
|
|
743
750
|
/// Helper class which abstracts away certain actions. Users can provide specializations for
|
|
744
751
|
/// custom holders, but it's only necessary if the type has a non-standard interface.
|
|
745
752
|
template <typename T>
|
|
@@ -787,11 +794,11 @@ protected:
|
|
|
787
794
|
}
|
|
788
795
|
}
|
|
789
796
|
|
|
790
|
-
|
|
797
|
+
void load_value(value_and_holder &&v_h) {
|
|
791
798
|
if (v_h.holder_constructed()) {
|
|
792
799
|
value = v_h.value_ptr();
|
|
793
800
|
holder = v_h.template holder<holder_type>();
|
|
794
|
-
return
|
|
801
|
+
return;
|
|
795
802
|
}
|
|
796
803
|
throw cast_error("Unable to cast from non-held to held instance (T& to Holder<T>) "
|
|
797
804
|
#if !defined(PYBIND11_DETAILED_ERROR_MESSAGES)
|
{linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/class.h
RENAMED
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
#pragma once
|
|
11
11
|
|
|
12
|
-
#include
|
|
13
|
-
#include
|
|
12
|
+
#include <pybind11/attr.h>
|
|
13
|
+
#include <pybind11/options.h>
|
|
14
|
+
|
|
15
|
+
#include "exception_translation.h"
|
|
14
16
|
|
|
15
17
|
PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
|
|
16
18
|
PYBIND11_NAMESPACE_BEGIN(detail)
|
|
@@ -591,7 +593,18 @@ extern "C" inline int pybind11_getbuffer(PyObject *obj, Py_buffer *view, int fla
|
|
|
591
593
|
return -1;
|
|
592
594
|
}
|
|
593
595
|
std::memset(view, 0, sizeof(Py_buffer));
|
|
594
|
-
buffer_info *info =
|
|
596
|
+
buffer_info *info = nullptr;
|
|
597
|
+
try {
|
|
598
|
+
info = tinfo->get_buffer(obj, tinfo->get_buffer_data);
|
|
599
|
+
} catch (...) {
|
|
600
|
+
try_translate_exceptions();
|
|
601
|
+
raise_from(PyExc_BufferError, "Error getting buffer");
|
|
602
|
+
return -1;
|
|
603
|
+
}
|
|
604
|
+
if (info == nullptr) {
|
|
605
|
+
pybind11_fail("FATAL UNEXPECTED SITUATION: tinfo->get_buffer() returned nullptr.");
|
|
606
|
+
}
|
|
607
|
+
|
|
595
608
|
if ((flags & PyBUF_WRITABLE) == PyBUF_WRITABLE && info->readonly) {
|
|
596
609
|
delete info;
|
|
597
610
|
// view->obj = nullptr; // Was just memset to 0, so not necessary
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
|
|
12
12
|
#define PYBIND11_VERSION_MAJOR 2
|
|
13
13
|
#define PYBIND11_VERSION_MINOR 13
|
|
14
|
-
#define PYBIND11_VERSION_PATCH
|
|
14
|
+
#define PYBIND11_VERSION_PATCH 6
|
|
15
15
|
|
|
16
16
|
// Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html
|
|
17
17
|
// Additional convention: 0xD = dev
|
|
18
|
-
#define PYBIND11_VERSION_HEX
|
|
18
|
+
#define PYBIND11_VERSION_HEX 0x020D0600
|
|
19
19
|
|
|
20
20
|
// Define some generic pybind11 helper macros for warning management.
|
|
21
21
|
//
|
|
@@ -462,7 +462,25 @@ PYBIND11_WARNING_POP
|
|
|
462
462
|
return "Hello, World!";
|
|
463
463
|
});
|
|
464
464
|
}
|
|
465
|
+
|
|
466
|
+
The third macro argument is optional (available since 2.13.0), and can be used to
|
|
467
|
+
mark the extension module as safe to run without the GIL under a free-threaded CPython
|
|
468
|
+
interpreter. Passing this argument has no effect on other interpreters.
|
|
469
|
+
|
|
470
|
+
.. code-block:: cpp
|
|
471
|
+
|
|
472
|
+
PYBIND11_MODULE(example, m, py::mod_gil_not_used()) {
|
|
473
|
+
m.doc() = "pybind11 example module safe to run without the GIL";
|
|
474
|
+
|
|
475
|
+
// Add bindings here
|
|
476
|
+
m.def("foo", []() {
|
|
477
|
+
return "Hello, Free-threaded World!";
|
|
478
|
+
});
|
|
479
|
+
}
|
|
480
|
+
|
|
465
481
|
\endrst */
|
|
482
|
+
PYBIND11_WARNING_PUSH
|
|
483
|
+
PYBIND11_WARNING_DISABLE_CLANG("-Wgnu-zero-variadic-macro-arguments")
|
|
466
484
|
#define PYBIND11_MODULE(name, variable, ...) \
|
|
467
485
|
static ::pybind11::module_::module_def PYBIND11_CONCAT(pybind11_module_def_, name) \
|
|
468
486
|
PYBIND11_MAYBE_UNUSED; \
|
|
@@ -483,6 +501,7 @@ PYBIND11_WARNING_POP
|
|
|
483
501
|
PYBIND11_CATCH_INIT_EXCEPTIONS \
|
|
484
502
|
} \
|
|
485
503
|
void PYBIND11_CONCAT(pybind11_init_, name)(::pybind11::module_ & (variable))
|
|
504
|
+
PYBIND11_WARNING_POP
|
|
486
505
|
|
|
487
506
|
PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
|
|
488
507
|
|
|
@@ -538,7 +557,7 @@ enum class return_value_policy : uint8_t {
|
|
|
538
557
|
object without taking ownership similar to the above
|
|
539
558
|
return_value_policy::reference policy. In contrast to that policy, the
|
|
540
559
|
function or property's implicit this argument (called the parent) is
|
|
541
|
-
considered to be the
|
|
560
|
+
considered to be the owner of the return value (the child).
|
|
542
561
|
pybind11 then couples the lifetime of the parent to the child via a
|
|
543
562
|
reference relationship that ensures that the parent cannot be garbage
|
|
544
563
|
collected while Python is still using the child. More advanced
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
// Copyright (c) 2024 The pybind Community.
|
|
2
|
+
|
|
3
|
+
#pragma once
|
|
4
|
+
|
|
5
|
+
#include <pybind11/pytypes.h>
|
|
6
|
+
|
|
7
|
+
#include "common.h"
|
|
8
|
+
#include "internals.h"
|
|
9
|
+
|
|
10
|
+
#include <typeinfo>
|
|
11
|
+
|
|
12
|
+
PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
|
|
13
|
+
PYBIND11_NAMESPACE_BEGIN(detail)
|
|
14
|
+
|
|
15
|
+
// Forward declaration needed here: Refactoring opportunity.
|
|
16
|
+
extern "C" inline PyObject *pybind11_object_new(PyTypeObject *type, PyObject *, PyObject *);
|
|
17
|
+
|
|
18
|
+
inline bool type_is_managed_by_our_internals(PyTypeObject *type_obj) {
|
|
19
|
+
#if defined(PYPY_VERSION)
|
|
20
|
+
auto &internals = get_internals();
|
|
21
|
+
return bool(internals.registered_types_py.find(type_obj)
|
|
22
|
+
!= internals.registered_types_py.end());
|
|
23
|
+
#else
|
|
24
|
+
return bool(type_obj->tp_new == pybind11_object_new);
|
|
25
|
+
#endif
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
inline bool is_instance_method_of_type(PyTypeObject *type_obj, PyObject *attr_name) {
|
|
29
|
+
PyObject *descr = _PyType_Lookup(type_obj, attr_name);
|
|
30
|
+
return bool((descr != nullptr) && PyInstanceMethod_Check(descr));
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
inline object try_get_cpp_conduit_method(PyObject *obj) {
|
|
34
|
+
if (PyType_Check(obj)) {
|
|
35
|
+
return object();
|
|
36
|
+
}
|
|
37
|
+
PyTypeObject *type_obj = Py_TYPE(obj);
|
|
38
|
+
str attr_name("_pybind11_conduit_v1_");
|
|
39
|
+
bool assumed_to_be_callable = false;
|
|
40
|
+
if (type_is_managed_by_our_internals(type_obj)) {
|
|
41
|
+
if (!is_instance_method_of_type(type_obj, attr_name.ptr())) {
|
|
42
|
+
return object();
|
|
43
|
+
}
|
|
44
|
+
assumed_to_be_callable = true;
|
|
45
|
+
}
|
|
46
|
+
PyObject *method = PyObject_GetAttr(obj, attr_name.ptr());
|
|
47
|
+
if (method == nullptr) {
|
|
48
|
+
PyErr_Clear();
|
|
49
|
+
return object();
|
|
50
|
+
}
|
|
51
|
+
if (!assumed_to_be_callable && PyCallable_Check(method) == 0) {
|
|
52
|
+
Py_DECREF(method);
|
|
53
|
+
return object();
|
|
54
|
+
}
|
|
55
|
+
return reinterpret_steal<object>(method);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
inline void *try_raw_pointer_ephemeral_from_cpp_conduit(handle src,
|
|
59
|
+
const std::type_info *cpp_type_info) {
|
|
60
|
+
object method = try_get_cpp_conduit_method(src.ptr());
|
|
61
|
+
if (method) {
|
|
62
|
+
capsule cpp_type_info_capsule(const_cast<void *>(static_cast<const void *>(cpp_type_info)),
|
|
63
|
+
typeid(std::type_info).name());
|
|
64
|
+
object cpp_conduit = method(bytes(PYBIND11_PLATFORM_ABI_ID),
|
|
65
|
+
cpp_type_info_capsule,
|
|
66
|
+
bytes("raw_pointer_ephemeral"));
|
|
67
|
+
if (isinstance<capsule>(cpp_conduit)) {
|
|
68
|
+
return reinterpret_borrow<capsule>(cpp_conduit).get_pointer();
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
return nullptr;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
#define PYBIND11_HAS_CPP_CONDUIT 1
|
|
75
|
+
|
|
76
|
+
PYBIND11_NAMESPACE_END(detail)
|
|
77
|
+
PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
pybind11/detail/exception_translation.h: means to translate C++ exceptions to Python exceptions
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2024 The Pybind Development Team.
|
|
5
|
+
|
|
6
|
+
All rights reserved. Use of this source code is governed by a
|
|
7
|
+
BSD-style license that can be found in the LICENSE file.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
#pragma once
|
|
11
|
+
|
|
12
|
+
#include "common.h"
|
|
13
|
+
#include "internals.h"
|
|
14
|
+
|
|
15
|
+
PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
|
|
16
|
+
PYBIND11_NAMESPACE_BEGIN(detail)
|
|
17
|
+
|
|
18
|
+
// Apply all the extensions translators from a list
|
|
19
|
+
// Return true if one of the translators completed without raising an exception
|
|
20
|
+
// itself. Return of false indicates that if there are other translators
|
|
21
|
+
// available, they should be tried.
|
|
22
|
+
inline bool apply_exception_translators(std::forward_list<ExceptionTranslator> &translators) {
|
|
23
|
+
auto last_exception = std::current_exception();
|
|
24
|
+
|
|
25
|
+
for (auto &translator : translators) {
|
|
26
|
+
try {
|
|
27
|
+
translator(last_exception);
|
|
28
|
+
return true;
|
|
29
|
+
} catch (...) {
|
|
30
|
+
last_exception = std::current_exception();
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
return false;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
inline void try_translate_exceptions() {
|
|
37
|
+
/* When an exception is caught, give each registered exception
|
|
38
|
+
translator a chance to translate it to a Python exception. First
|
|
39
|
+
all module-local translators will be tried in reverse order of
|
|
40
|
+
registration. If none of the module-locale translators handle
|
|
41
|
+
the exception (or there are no module-locale translators) then
|
|
42
|
+
the global translators will be tried, also in reverse order of
|
|
43
|
+
registration.
|
|
44
|
+
|
|
45
|
+
A translator may choose to do one of the following:
|
|
46
|
+
|
|
47
|
+
- catch the exception and call py::set_error()
|
|
48
|
+
to set a standard (or custom) Python exception, or
|
|
49
|
+
- do nothing and let the exception fall through to the next translator, or
|
|
50
|
+
- delegate translation to the next translator by throwing a new type of exception.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
bool handled = with_internals([&](internals &internals) {
|
|
54
|
+
auto &local_exception_translators = get_local_internals().registered_exception_translators;
|
|
55
|
+
if (detail::apply_exception_translators(local_exception_translators)) {
|
|
56
|
+
return true;
|
|
57
|
+
}
|
|
58
|
+
auto &exception_translators = internals.registered_exception_translators;
|
|
59
|
+
if (detail::apply_exception_translators(exception_translators)) {
|
|
60
|
+
return true;
|
|
61
|
+
}
|
|
62
|
+
return false;
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
if (!handled) {
|
|
66
|
+
set_error(PyExc_SystemError, "Exception escaped from default exception translator!");
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
PYBIND11_NAMESPACE_END(detail)
|
|
71
|
+
PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)
|
{linkpython_extern-1.1.0 → linkpython_extern-1.1.1}/modules/pybind11/include/pybind11/detail/init.h
RENAMED
|
@@ -128,11 +128,13 @@ void construct(value_and_holder &v_h, Cpp<Class> *ptr, bool need_alias) {
|
|
|
128
128
|
// the holder and destruction happens when we leave the C++ scope, and the holder
|
|
129
129
|
// class gets to handle the destruction however it likes.
|
|
130
130
|
v_h.value_ptr() = ptr;
|
|
131
|
-
v_h.set_instance_registered(true);
|
|
132
|
-
|
|
131
|
+
v_h.set_instance_registered(true); // Trick to prevent init_instance from registering it
|
|
132
|
+
// DANGER ZONE BEGIN: exceptions will leave v_h in an invalid state.
|
|
133
|
+
v_h.type->init_instance(v_h.inst, nullptr); // Set up the holder
|
|
133
134
|
Holder<Class> temp_holder(std::move(v_h.holder<Holder<Class>>())); // Steal the holder
|
|
134
135
|
v_h.type->dealloc(v_h); // Destroys the moved-out holder remains, resets value ptr to null
|
|
135
136
|
v_h.set_instance_registered(false);
|
|
137
|
+
// DANGER ZONE END.
|
|
136
138
|
|
|
137
139
|
construct_alias_from_cpp<Class>(is_alias_constructible<Class>{}, v_h, std::move(*ptr));
|
|
138
140
|
} else {
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
#include "common.h"
|
|
13
13
|
|
|
14
14
|
#if defined(PYBIND11_SIMPLE_GIL_MANAGEMENT)
|
|
15
|
-
# include
|
|
15
|
+
# include <pybind11/gil.h>
|
|
16
16
|
#endif
|
|
17
17
|
|
|
18
|
-
#include
|
|
18
|
+
#include <pybind11/pytypes.h>
|
|
19
19
|
|
|
20
20
|
#include <exception>
|
|
21
21
|
#include <mutex>
|
|
@@ -148,20 +148,35 @@ struct override_hash {
|
|
|
148
148
|
|
|
149
149
|
using instance_map = std::unordered_multimap<const void *, instance *>;
|
|
150
150
|
|
|
151
|
+
#ifdef Py_GIL_DISABLED
|
|
152
|
+
// Wrapper around PyMutex to provide BasicLockable semantics
|
|
153
|
+
class pymutex {
|
|
154
|
+
PyMutex mutex;
|
|
155
|
+
|
|
156
|
+
public:
|
|
157
|
+
pymutex() : mutex({}) {}
|
|
158
|
+
void lock() { PyMutex_Lock(&mutex); }
|
|
159
|
+
void unlock() { PyMutex_Unlock(&mutex); }
|
|
160
|
+
};
|
|
161
|
+
|
|
151
162
|
// Instance map shards are used to reduce mutex contention in free-threaded Python.
|
|
152
163
|
struct instance_map_shard {
|
|
153
|
-
std::mutex mutex;
|
|
154
164
|
instance_map registered_instances;
|
|
165
|
+
pymutex mutex;
|
|
155
166
|
// alignas(64) would be better, but causes compile errors in macOS before 10.14 (see #5200)
|
|
156
|
-
char padding[64 - (sizeof(
|
|
167
|
+
char padding[64 - (sizeof(instance_map) + sizeof(pymutex)) % 64];
|
|
157
168
|
};
|
|
158
169
|
|
|
170
|
+
static_assert(sizeof(instance_map_shard) % 64 == 0,
|
|
171
|
+
"instance_map_shard size is not a multiple of 64 bytes");
|
|
172
|
+
#endif
|
|
173
|
+
|
|
159
174
|
/// Internal data structure used to track registered instances and types.
|
|
160
175
|
/// Whenever binary incompatible changes are made to this structure,
|
|
161
176
|
/// `PYBIND11_INTERNALS_VERSION` must be incremented.
|
|
162
177
|
struct internals {
|
|
163
178
|
#ifdef Py_GIL_DISABLED
|
|
164
|
-
|
|
179
|
+
pymutex mutex;
|
|
165
180
|
#endif
|
|
166
181
|
// std::type_index -> pybind11's type information
|
|
167
182
|
type_map<type_info *> registered_types_cpp;
|
|
@@ -306,15 +321,17 @@ struct type_info {
|
|
|
306
321
|
# define PYBIND11_INTERNALS_KIND ""
|
|
307
322
|
#endif
|
|
308
323
|
|
|
324
|
+
#define PYBIND11_PLATFORM_ABI_ID \
|
|
325
|
+
PYBIND11_INTERNALS_KIND PYBIND11_COMPILER_TYPE PYBIND11_STDLIB PYBIND11_BUILD_ABI \
|
|
326
|
+
PYBIND11_BUILD_TYPE
|
|
327
|
+
|
|
309
328
|
#define PYBIND11_INTERNALS_ID \
|
|
310
329
|
"__pybind11_internals_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
|
|
311
|
-
|
|
312
|
-
PYBIND11_BUILD_ABI PYBIND11_BUILD_TYPE "__"
|
|
330
|
+
PYBIND11_PLATFORM_ABI_ID "__"
|
|
313
331
|
|
|
314
332
|
#define PYBIND11_MODULE_LOCAL_ID \
|
|
315
333
|
"__pybind11_module_local_v" PYBIND11_TOSTRING(PYBIND11_INTERNALS_VERSION) \
|
|
316
|
-
|
|
317
|
-
PYBIND11_BUILD_ABI PYBIND11_BUILD_TYPE "__"
|
|
334
|
+
PYBIND11_PLATFORM_ABI_ID "__"
|
|
318
335
|
|
|
319
336
|
/// Each module locally stores a pointer to the `internals` data. The data
|
|
320
337
|
/// itself is shared among modules with the same `PYBIND11_INTERNALS_ID`.
|
|
@@ -538,7 +555,7 @@ PYBIND11_NOINLINE internals &get_internals() {
|
|
|
538
555
|
}
|
|
539
556
|
#endif
|
|
540
557
|
internals_ptr->istate = tstate->interp;
|
|
541
|
-
state_dict[PYBIND11_INTERNALS_ID] = capsule(internals_pp);
|
|
558
|
+
state_dict[PYBIND11_INTERNALS_ID] = capsule(reinterpret_cast<void *>(internals_pp));
|
|
542
559
|
internals_ptr->registered_exception_translators.push_front(&translate_exception);
|
|
543
560
|
internals_ptr->static_property_type = make_static_property_type();
|
|
544
561
|
internals_ptr->default_metaclass = make_default_metaclass();
|
|
@@ -614,7 +631,7 @@ inline local_internals &get_local_internals() {
|
|
|
614
631
|
}
|
|
615
632
|
|
|
616
633
|
#ifdef Py_GIL_DISABLED
|
|
617
|
-
# define PYBIND11_LOCK_INTERNALS(internals) std::unique_lock<
|
|
634
|
+
# define PYBIND11_LOCK_INTERNALS(internals) std::unique_lock<pymutex> lock((internals).mutex)
|
|
618
635
|
#else
|
|
619
636
|
# define PYBIND11_LOCK_INTERNALS(internals)
|
|
620
637
|
#endif
|
|
@@ -651,7 +668,7 @@ inline auto with_instance_map(const void *ptr,
|
|
|
651
668
|
auto idx = static_cast<size_t>(hash & internals.instance_shards_mask);
|
|
652
669
|
|
|
653
670
|
auto &shard = internals.instance_shards[idx];
|
|
654
|
-
std::unique_lock<
|
|
671
|
+
std::unique_lock<pymutex> lock(shard.mutex);
|
|
655
672
|
return cb(shard.registered_instances);
|
|
656
673
|
#else
|
|
657
674
|
(void) ptr;
|
|
@@ -667,7 +684,7 @@ inline size_t num_registered_instances() {
|
|
|
667
684
|
size_t count = 0;
|
|
668
685
|
for (size_t i = 0; i <= internals.instance_shards_mask; ++i) {
|
|
669
686
|
auto &shard = internals.instance_shards[i];
|
|
670
|
-
std::unique_lock<
|
|
687
|
+
std::unique_lock<pymutex> lock(shard.mutex);
|
|
671
688
|
count += shard.registered_instances.size();
|
|
672
689
|
}
|
|
673
690
|
return count;
|
|
@@ -9,15 +9,20 @@
|
|
|
9
9
|
|
|
10
10
|
#pragma once
|
|
11
11
|
|
|
12
|
-
#include
|
|
12
|
+
#include <pybind11/pytypes.h>
|
|
13
|
+
|
|
13
14
|
#include "common.h"
|
|
15
|
+
#include "cpp_conduit.h"
|
|
14
16
|
#include "descr.h"
|
|
15
17
|
#include "internals.h"
|
|
16
18
|
#include "typeid.h"
|
|
19
|
+
#include "value_and_holder.h"
|
|
17
20
|
|
|
18
21
|
#include <cstdint>
|
|
22
|
+
#include <cstring>
|
|
19
23
|
#include <iterator>
|
|
20
24
|
#include <new>
|
|
25
|
+
#include <stdexcept>
|
|
21
26
|
#include <string>
|
|
22
27
|
#include <type_traits>
|
|
23
28
|
#include <typeindex>
|
|
@@ -259,67 +264,6 @@ PYBIND11_NOINLINE handle find_registered_python_instance(void *src,
|
|
|
259
264
|
});
|
|
260
265
|
}
|
|
261
266
|
|
|
262
|
-
struct value_and_holder {
|
|
263
|
-
instance *inst = nullptr;
|
|
264
|
-
size_t index = 0u;
|
|
265
|
-
const detail::type_info *type = nullptr;
|
|
266
|
-
void **vh = nullptr;
|
|
267
|
-
|
|
268
|
-
// Main constructor for a found value/holder:
|
|
269
|
-
value_and_holder(instance *i, const detail::type_info *type, size_t vpos, size_t index)
|
|
270
|
-
: inst{i}, index{index}, type{type},
|
|
271
|
-
vh{inst->simple_layout ? inst->simple_value_holder
|
|
272
|
-
: &inst->nonsimple.values_and_holders[vpos]} {}
|
|
273
|
-
|
|
274
|
-
// Default constructor (used to signal a value-and-holder not found by get_value_and_holder())
|
|
275
|
-
value_and_holder() = default;
|
|
276
|
-
|
|
277
|
-
// Used for past-the-end iterator
|
|
278
|
-
explicit value_and_holder(size_t index) : index{index} {}
|
|
279
|
-
|
|
280
|
-
template <typename V = void>
|
|
281
|
-
V *&value_ptr() const {
|
|
282
|
-
return reinterpret_cast<V *&>(vh[0]);
|
|
283
|
-
}
|
|
284
|
-
// True if this `value_and_holder` has a non-null value pointer
|
|
285
|
-
explicit operator bool() const { return value_ptr() != nullptr; }
|
|
286
|
-
|
|
287
|
-
template <typename H>
|
|
288
|
-
H &holder() const {
|
|
289
|
-
return reinterpret_cast<H &>(vh[1]);
|
|
290
|
-
}
|
|
291
|
-
bool holder_constructed() const {
|
|
292
|
-
return inst->simple_layout
|
|
293
|
-
? inst->simple_holder_constructed
|
|
294
|
-
: (inst->nonsimple.status[index] & instance::status_holder_constructed) != 0u;
|
|
295
|
-
}
|
|
296
|
-
// NOLINTNEXTLINE(readability-make-member-function-const)
|
|
297
|
-
void set_holder_constructed(bool v = true) {
|
|
298
|
-
if (inst->simple_layout) {
|
|
299
|
-
inst->simple_holder_constructed = v;
|
|
300
|
-
} else if (v) {
|
|
301
|
-
inst->nonsimple.status[index] |= instance::status_holder_constructed;
|
|
302
|
-
} else {
|
|
303
|
-
inst->nonsimple.status[index] &= (std::uint8_t) ~instance::status_holder_constructed;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
bool instance_registered() const {
|
|
307
|
-
return inst->simple_layout
|
|
308
|
-
? inst->simple_instance_registered
|
|
309
|
-
: ((inst->nonsimple.status[index] & instance::status_instance_registered) != 0);
|
|
310
|
-
}
|
|
311
|
-
// NOLINTNEXTLINE(readability-make-member-function-const)
|
|
312
|
-
void set_instance_registered(bool v = true) {
|
|
313
|
-
if (inst->simple_layout) {
|
|
314
|
-
inst->simple_instance_registered = v;
|
|
315
|
-
} else if (v) {
|
|
316
|
-
inst->nonsimple.status[index] |= instance::status_instance_registered;
|
|
317
|
-
} else {
|
|
318
|
-
inst->nonsimple.status[index] &= (std::uint8_t) ~instance::status_instance_registered;
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
};
|
|
322
|
-
|
|
323
267
|
// Container for accessing and iterating over an instance's values/holders
|
|
324
268
|
struct values_and_holders {
|
|
325
269
|
private:
|
|
@@ -488,7 +432,7 @@ PYBIND11_NOINLINE void instance::allocate_layout() {
|
|
|
488
432
|
// NOLINTNEXTLINE(readability-make-member-function-const)
|
|
489
433
|
PYBIND11_NOINLINE void instance::deallocate_layout() {
|
|
490
434
|
if (!simple_layout) {
|
|
491
|
-
PyMem_Free(nonsimple.values_and_holders);
|
|
435
|
+
PyMem_Free(reinterpret_cast<void *>(nonsimple.values_and_holders));
|
|
492
436
|
}
|
|
493
437
|
}
|
|
494
438
|
|
|
@@ -670,6 +614,13 @@ public:
|
|
|
670
614
|
}
|
|
671
615
|
return false;
|
|
672
616
|
}
|
|
617
|
+
bool try_cpp_conduit(handle src) {
|
|
618
|
+
value = try_raw_pointer_ephemeral_from_cpp_conduit(src, cpptype);
|
|
619
|
+
if (value != nullptr) {
|
|
620
|
+
return true;
|
|
621
|
+
}
|
|
622
|
+
return false;
|
|
623
|
+
}
|
|
673
624
|
void check_holder_compat() {}
|
|
674
625
|
|
|
675
626
|
PYBIND11_NOINLINE static void *local_load(PyObject *src, const type_info *ti) {
|
|
@@ -801,6 +752,10 @@ public:
|
|
|
801
752
|
return true;
|
|
802
753
|
}
|
|
803
754
|
|
|
755
|
+
if (convert && cpptype && this_.try_cpp_conduit(src)) {
|
|
756
|
+
return true;
|
|
757
|
+
}
|
|
758
|
+
|
|
804
759
|
return false;
|
|
805
760
|
}
|
|
806
761
|
|
|
@@ -828,6 +783,32 @@ public:
|
|
|
828
783
|
void *value = nullptr;
|
|
829
784
|
};
|
|
830
785
|
|
|
786
|
+
inline object cpp_conduit_method(handle self,
|
|
787
|
+
const bytes &pybind11_platform_abi_id,
|
|
788
|
+
const capsule &cpp_type_info_capsule,
|
|
789
|
+
const bytes &pointer_kind) {
|
|
790
|
+
#ifdef PYBIND11_HAS_STRING_VIEW
|
|
791
|
+
using cpp_str = std::string_view;
|
|
792
|
+
#else
|
|
793
|
+
using cpp_str = std::string;
|
|
794
|
+
#endif
|
|
795
|
+
if (cpp_str(pybind11_platform_abi_id) != PYBIND11_PLATFORM_ABI_ID) {
|
|
796
|
+
return none();
|
|
797
|
+
}
|
|
798
|
+
if (std::strcmp(cpp_type_info_capsule.name(), typeid(std::type_info).name()) != 0) {
|
|
799
|
+
return none();
|
|
800
|
+
}
|
|
801
|
+
if (cpp_str(pointer_kind) != "raw_pointer_ephemeral") {
|
|
802
|
+
throw std::runtime_error("Invalid pointer_kind: \"" + std::string(pointer_kind) + "\"");
|
|
803
|
+
}
|
|
804
|
+
const auto *cpp_type_info = cpp_type_info_capsule.get_pointer<const std::type_info>();
|
|
805
|
+
type_caster_generic caster(*cpp_type_info);
|
|
806
|
+
if (!caster.load(self, false)) {
|
|
807
|
+
return none();
|
|
808
|
+
}
|
|
809
|
+
return capsule(caster.value, cpp_type_info->name());
|
|
810
|
+
}
|
|
811
|
+
|
|
831
812
|
/**
|
|
832
813
|
* Determine suitable casting operator for pointer-or-lvalue-casting type casters. The type caster
|
|
833
814
|
* needs to provide `operator T*()` and `operator T&()` operators.
|