├── .editorconfig ├── .github └── workflows │ ├── pre-commit.yml │ └── tests.yml ├── .gitignore ├── .meta.toml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.rst ├── CONTRIBUTING.md ├── COPYRIGHT.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _static │ └── placeholder.txt ├── _templates │ └── placeholder.txt ├── api.rst ├── changes.rst ├── conf.py ├── convenience.rst ├── datamanager.rst ├── developer.rst ├── doom.rst ├── hooks.rst ├── index.rst ├── integrations.rst ├── make.bat ├── requirements.txt ├── savepoint.rst └── sqlalchemy.rst ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── transaction │ ├── __init__.py │ ├── _manager.py │ ├── _transaction.py │ ├── interfaces.py │ ├── tests │ ├── __init__.py │ ├── common.py │ ├── examples.py │ ├── savepointsample.py │ ├── test__manager.py │ ├── test__transaction.py │ ├── test_savepoint.py │ └── test_weakset.py │ └── weakset.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.gitignore -------------------------------------------------------------------------------- /.meta.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.meta.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/convenience.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/convenience.rst -------------------------------------------------------------------------------- /docs/datamanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/datamanager.rst -------------------------------------------------------------------------------- /docs/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/developer.rst -------------------------------------------------------------------------------- /docs/doom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/doom.rst -------------------------------------------------------------------------------- /docs/hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/hooks.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/integrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/integrations.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/savepoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/savepoint.rst -------------------------------------------------------------------------------- /docs/sqlalchemy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/docs/sqlalchemy.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/setup.py -------------------------------------------------------------------------------- /src/transaction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/__init__.py -------------------------------------------------------------------------------- /src/transaction/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/_manager.py -------------------------------------------------------------------------------- /src/transaction/_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/_transaction.py -------------------------------------------------------------------------------- /src/transaction/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/interfaces.py -------------------------------------------------------------------------------- /src/transaction/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /src/transaction/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/common.py -------------------------------------------------------------------------------- /src/transaction/tests/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/examples.py -------------------------------------------------------------------------------- /src/transaction/tests/savepointsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/savepointsample.py -------------------------------------------------------------------------------- /src/transaction/tests/test__manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/test__manager.py -------------------------------------------------------------------------------- /src/transaction/tests/test__transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/test__transaction.py -------------------------------------------------------------------------------- /src/transaction/tests/test_savepoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/test_savepoint.py -------------------------------------------------------------------------------- /src/transaction/tests/test_weakset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/tests/test_weakset.py -------------------------------------------------------------------------------- /src/transaction/weakset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/src/transaction/weakset.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zopefoundation/transaction/HEAD/tox.ini --------------------------------------------------------------------------------