.coveragerc
.flake8
.gitattributes
.gitignore
.gitlab-ci.yml
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE-APACHE
LICENSE-MIT
MANIFEST.in
PROJECT_SUMMARY.md
README.md
SECURITY.md
mypy.ini
pylintrc
pyproject.toml
requirements-dev.txt
requirements-test.txt
requirements.txt
setup.cfg
setup.py
tox.ini
.gitlab/ci/benchmark.yml
.gitlab/ci/deploy.yml
.gitlab/ci/lint.yml
.gitlab/ci/security.yml
.gitlab/ci/test.yml
benchmarks/__init__.py
benchmarks/conftest.py
benchmarks/test_allocation_speed.py
benchmarks/test_comparison.py
benchmarks/test_multithreaded.py
docs/conf.py
docs/index.rst
docs/api/config.rst
docs/api/handle.rst
docs/api/pool.rst
docs/benchmarks/methodology.md
docs/benchmarks/results/comparison.md
docs/guides/architecture.md
docs/guides/contributing.md
docs/guides/getting_started.rst
docs/guides/migration_guide.md
docs/guides/performance_guide.md
examples/__init__.py
examples/async_usage.py
examples/basic_usage.py
examples/custom_initialization.py
examples/decorator_pattern.py
examples/statistics.py
examples/thread_local.py
scripts/benchmark.sh
scripts/coverage.sh
scripts/format.sh
scripts/lint.sh
scripts/release_checklist.sh
scripts/test_all.sh
scripts/type_check.sh
src/fastalloc/__init__.py
src/fastalloc/__version__.py
src/fastalloc/decorators.py
src/fastalloc/exceptions.py
src/fastalloc/protocols.py
src/fastalloc/py.typed
src/fastalloc/types.py
src/fastalloc/utils.py
src/fastalloc.egg-info/PKG-INFO
src/fastalloc.egg-info/SOURCES.txt
src/fastalloc.egg-info/dependency_links.txt
src/fastalloc.egg-info/not-zip-safe
src/fastalloc.egg-info/requires.txt
src/fastalloc.egg-info/top_level.txt
src/fastalloc/allocator/__init__.py
src/fastalloc/allocator/deque.py
src/fastalloc/allocator/freelist.py
src/fastalloc/allocator/stack.py
src/fastalloc/async_support/__init__.py
src/fastalloc/async_support/handle.py
src/fastalloc/async_support/pool.py
src/fastalloc/config/__init__.py
src/fastalloc/config/builder.py
src/fastalloc/config/growth_strategy.py
src/fastalloc/config/initialization.py
src/fastalloc/handle/__init__.py
src/fastalloc/handle/context.py
src/fastalloc/handle/owned.py
src/fastalloc/handle/weak.py
src/fastalloc/pool/__init__.py
src/fastalloc/pool/base.py
src/fastalloc/pool/fixed.py
src/fastalloc/pool/growing.py
src/fastalloc/pool/thread_local.py
src/fastalloc/pool/thread_safe.py
src/fastalloc/stats/__init__.py
src/fastalloc/stats/collector.py
src/fastalloc/stats/reporter.py
tests/__init__.py
tests/conftest.py
tests/integration/__init__.py
tests/integration/test_async.py
tests/integration/test_basic_operations.py
tests/property/__init__.py
tests/property/test_pool_properties.py
tests/stress/__init__.py
tests/stress/test_high_allocation_rate.py
tests/unit/__init__.py
tests/unit/test_config.py
tests/unit/test_decorators.py
tests/unit/test_fixed_pool.py
tests/unit/test_growing_pool.py
tests/unit/test_handles.py
tests/unit/test_thread_local.py
tests/unit/test_thread_safe.py