Skip to main content
https://github.com/zopefoundation/AccessControl/actions/workflows/tests.yml/badge.svg https://coveralls.io/repos/github/zopefoundation/AccessControl/badge.svg?branch=master Current version on PyPI Supported Python versions

AccessControl

AccessControl provides a general security framework for use in Zope.

Change log

For changes before version 3.0, see HISTORY.rst.

7.4 (2026-07-13)

  • Fix a parity defect between the Python and C implementations of guarded_getattr: the pure-Python implementation keyed the container assertion on type(value.__self__) instead of type(inst), so under PURE_PYTHON a bound method of an allow-listed simple type (e.g. tuple/bytes/range) was returned without calling validate(). The Python implementation now keys on type(inst), matching the C implementation, and a regression test guards the behaviour.

  • Add preliminary support for Python 3.15 as of 3.15b1.

  • Add support for automatically building and publishing Windows/ARM64 wheels.

  • Add support for automatically building and publishing source distributions.

7.3 (2025-11-16)

  • Move all supported package metadata into pyproject.toml.

  • Add support for Python 3.14.

  • Drop support for Python 3.8 and 3.9.

7.2 (2024-11-03)

  • Prevent untrusted access to AccessControl.userfolder.UserFolder.data (fixes GHSA-g5vw-3h65-2q3v).

7.1 (2024-10-10)

  • Add final support for Python 3.13.

  • Respect PURE_PYTHON environment variable set to 0 when running tests.

  • Let the roles access in rolesForPermissionOn interpret AttributeError and Unauthorized as “no roles definition for this permission at this object” and report any other exception (for the Python and C implementation). We have to treat Unauthorized like AttributeError to support Shared.DC.Scripts.Bindings.UnauthorizedBinding which raises Unauthorized for any access.

7.0 (2024-05-30)

  • Add preliminary support for Python 3.13 as of 3.13b1.

  • Remove support for Python 3.7.

  • Build Windows wheels on GHA.

  • Make dict views (.keys(), .items() and .values()) behave like their unrestricted versions. (#147)

  • Make .items() validate each keys and values, like .keys() and .values() do.

  • Fix build errors on recent macOS versions.

6.3 (2023-11-20)

  • Add support for Python 3.12.

6.2 (2023-09-04)

  • Fix information disclosure through str.format_map. (CVE-2023-41050)

6.1 (2023-05-22)

  • Update C header files for ExtensionClass and Acquisition from the original packages where needed. (#140)

  • Add preliminary support for Python 3.12a5.

6.0 (2023-01-12)

  • Build Linux binary wheels for Python 3.11

  • Drop support for Python 2.7, 3.5, 3.6.

5.7 (2022-11-17)

  • Add support for building arm64 wheels on macOS.

5.6 (2022-11-03)

  • Add support for final Python 3.11 release.

5.5 (2022-10-10)

  • Switch from -Ofast to -O3 when compiling code for Linux wheels. (#133)

  • Add support for Python 3.11 (as of 3.11.0rc2).

5.4 (2022-08-26)

  • Add support for Python 3.11 (as of 3.11.0b5).

  • Support default argument in next built-in function. (#131)

5.3.1 (2022-03-29)

  • Prevent race condition in guarded_import (#123)

5.3 (2022-02-25)

  • Provide AccessControl.get_safe_globals to facilitate safe use.

  • Honor PURE_PYTHON environment variable to enable python implementation during runtime.

  • Add support for Python 3.10.

5.2 (2021-07-30)

  • Fix Appveyor configuration so tests can run and wheels build.

5.1 (2021-07-30)

NOTE: This release has been yanked from PyPI due to wheel build issues.

  • Fix a remote code execution issue by preventing access to string.Formatter from restricted code.

5.0 (2020-10-07)

  • Add support for Python 3.9.

  • Remove deprecated classes and functions in (see #32):

    • AccessControl/DTML.py

    • AccessControl/Owned.py

    • AccessControl/Role.py

    • AccessControl/Permissions.py

  • Add deprecation warnings for BBB imports in:

    • AccessControl/AuthEncoding.py

    • AccessControl/Owned.py

    • AccessControl/Role.py

    • AccessControl/User.py

  • Although this version might run on Zope 4, it is no longer supported because of the dropped deprecation warnings.

4.2 (2020-04-20)

  • Add missing permission Manage WebDAV Locks

  • Fix regression for BBB import of `users.UnrestrictedUser (#94)

  • Add a check if database is present in .owner.ownerInfo. (#91).

4.1 (2019-09-02)

  • Python 3: Allow iteration over the result of dict.{keys,values,items} (#89).

4.0 (2019-05-08)

Changes since 3.0.12:

  • Add support for Python 3.5, 3.6, 3.7 and 3.8.

  • Restore simple access to bytes methods in Python 3 (#83)

  • Clarify deprecation warnings for several BBB shims. (#32)

  • Add a test to prove that a user folder flag cannot be acquired elsewhere. (#7)

  • Tighten basic auth string handling in BasicUserFolder.identify (#56)

  • Prevent the Zope 4 ZMI from showing an add dialog for the user folder. (#82)

  • Fix order of roles returned by AccessControl.rolemanager.RoleManager.userdefined_roles.

  • Add configuration for zodbupdate.

  • Add TaintedBytes besides TaintedString in AccessControl.tainted. (#57)

  • Security fix: In str.format, check the security for attributes that are accessed. (Ported from 2.13).

  • Port override_container context manager here from 2.13.

  • Add AppVeyor configuration to automate building Windows eggs.

  • Fix for compilers that only support C89 syntax (e.g. on Windows).

  • Sanitize and test RoleManager role handling.

  • Depend on RestrictedPython >= 4.0.

  • #16: Fixed permission handling by avoiding column and row numbers as identifiers for permissions and roles.

  • Extract .AuthEncoding to its own package for reuse.

  • Declare missing dependency on BTrees.

  • Drop Record dependency, which now does its own security declaration.

  • Remove leftovers from history support dropped in Zope.

  • Remove duplicate guard against * imports. (#60)

3.0.12 (2015-12-21)

3.0.11 (2014-11-02)

  • Harden test fix for machines that do not define localhost.

3.0.10 (2014-11-02)

  • Test fix for machines that do not define localhost.

3.0.9 (2014-08-08)

  • GitHub #6: Do not pass SecurityInfo instance itself to declarePublic/declarePrivate when using the public/private decorator. This fixes Conflicting security declarations warnings on Zope startup.

  • LP #1248529: Leave existing security manager in place inside RoleManager.manage_getUserRolesAndPermissions.

3.0.8 (2013-07-16)

  • LP #1169923: ensure initialization of shared ImplPython state (used by ImplC) when using the “C” security policy. Thanks to Arnaud Fontaine for the patch.

3.0.7 (2013-05-14)

  • Remove long-deprecated ‘Shared’ roles support (pre-dates Zope, never used by Zope itself)

  • Prevent infinite loop when looking up local roles in an acquisition chain with cycles.

3.0.6 (2012-10-31)

  • LP #1071067: Use a stronger random number generator and a constant time comparison function.

3.0.5 (2012-10-21)

  • LP #966101: Recognize special zope2.Private permission in ZCML role directive.

3.0.4 (2012-09-09)

  • LP #1047318: Tighten import restrictions for restricted code.

3.0.3 (2012-08-23)

  • Fix a bug in ZopeSecurityPolicy.py. Global variable rolesForPermissionOn could be overridden if __role__ had custom rolesForPermissionOn.

3.0.2 (2012-06-22)

  • Add Anonymous as a default role for Public permission.

3.0.1 (2012-05-24)

  • Fix tests under Python 2.6.

3.0 (2012-05-12)

  • Added decorators for public, private and protected security declarations.

  • Update tests to take advantage of automatic test suite discovery.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

accesscontrol-7.4.tar.gz (115.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

accesscontrol-7.4-cp314-cp314-win_arm64.whl (145.5 kB view details)

Uploaded CPython 3.14Windows ARM64

accesscontrol-7.4-cp314-cp314-win_amd64.whl (146.0 kB view details)

Uploaded CPython 3.14Windows x86-64

accesscontrol-7.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (205.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

accesscontrol-7.4-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (205.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

accesscontrol-7.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (201.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

accesscontrol-7.4-cp314-cp314-macosx_11_0_arm64.whl (144.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

accesscontrol-7.4-cp314-cp314-macosx_10_9_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

accesscontrol-7.4-cp313-cp313-win_arm64.whl (145.0 kB view details)

Uploaded CPython 3.13Windows ARM64

accesscontrol-7.4-cp313-cp313-win_amd64.whl (145.7 kB view details)

Uploaded CPython 3.13Windows x86-64

accesscontrol-7.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (205.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

accesscontrol-7.4-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (206.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

accesscontrol-7.4-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (200.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

accesscontrol-7.4-cp313-cp313-macosx_11_0_arm64.whl (144.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

accesscontrol-7.4-cp313-cp313-macosx_10_9_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

accesscontrol-7.4-cp312-cp312-win_arm64.whl (145.0 kB view details)

Uploaded CPython 3.12Windows ARM64

accesscontrol-7.4-cp312-cp312-win_amd64.whl (145.7 kB view details)

Uploaded CPython 3.12Windows x86-64

accesscontrol-7.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (205.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

accesscontrol-7.4-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (206.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

accesscontrol-7.4-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (200.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

accesscontrol-7.4-cp312-cp312-macosx_11_0_arm64.whl (144.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

accesscontrol-7.4-cp312-cp312-macosx_10_9_x86_64.whl (144.2 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

accesscontrol-7.4-cp311-cp311-win_arm64.whl (144.9 kB view details)

Uploaded CPython 3.11Windows ARM64

accesscontrol-7.4-cp311-cp311-win_amd64.whl (145.4 kB view details)

Uploaded CPython 3.11Windows x86-64

accesscontrol-7.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (199.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

accesscontrol-7.4-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (199.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

accesscontrol-7.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (195.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

accesscontrol-7.4-cp311-cp311-macosx_11_0_arm64.whl (143.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

accesscontrol-7.4-cp311-cp311-macosx_10_9_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

accesscontrol-7.4-cp310-cp310-win_amd64.whl (145.4 kB view details)

Uploaded CPython 3.10Windows x86-64

accesscontrol-7.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (196.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

accesscontrol-7.4-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (195.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

accesscontrol-7.4-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (192.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

accesscontrol-7.4-cp310-cp310-macosx_11_0_arm64.whl (144.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

accesscontrol-7.4-cp310-cp310-macosx_10_9_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file accesscontrol-7.4.tar.gz.

File metadata

  • Download URL: accesscontrol-7.4.tar.gz
  • Upload date:
  • Size: 115.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4.tar.gz
Algorithm Hash digest
SHA256 d3558b40495c5fca98215ff0de78694f1f7ac7cfb444323e582cf5539c7f8aa0
MD5 9aa883e1243c9006c5f958db1b17d6e2
BLAKE2b-256 83f5832871275f9f943831a8409fb7fa5245bd1aedecd4955a67f03edfe03246

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4.tar.gz:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 145.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4e582fbeddd91da28f156adb68ccb40985e9e5987695efa4e67b7584f19956e6
MD5 dda1fb15264a98041cf45d341c5f7e10
BLAKE2b-256 a97915e2f09dd8716c63b75122078ca4a483aba75f6a33fd0559c1f5fbbb8895

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-win_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 146.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ecd47d212b4e52df5f8ce28d0ea64230367a56090ceede0add87f8d8ad9bf9f1
MD5 b6e272b045dbf09cfae179b09bf0cc8d
BLAKE2b-256 9c9a416298d077fa4fc8e6cfb99eb8ebb074518fdf9821b749398eb561f5d8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-win_amd64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bc4c1fd50396ed72a7cb3e4446ab0e2554ed952c7ec4b0a83e09b1f777be9ce5
MD5 0ecd8489f9f874a793e804991feb5be6
BLAKE2b-256 0bb155a055dc53a7eed728ddeb986173e821cd4b535c864f0fb46945434f7788

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c8232e16e3836e9e0749a59f361dad0a0c70566b596f3368210b1b407021b6d1
MD5 636eeb9d81d3ccf0c1f02803afbccb72
BLAKE2b-256 43f105cb4e85e3ea7849e2fc71fce1ce99fb64825419c5136b45f28d14a45230

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 03c18b5f85ce4ed429ae4f7c556142828be7f5cbc4617c5fe9d36dfc5b8aff15
MD5 10592f515370d95cfe3091f9421faedf
BLAKE2b-256 7a12bca2613f4adbe47e3a78050a87347122e124ef7451c2aa6a2b3ec633afc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11e39efc4c5a9e5d665f4236925b74ed39d9e646fb236c0ff4afb1980cf12162
MD5 836d208d9d4d6fd7c70c9cce6f79186c
BLAKE2b-256 8cd2f39ceaca1f881ff4d95bfd783fd6b24ec8ebcd65d0bfa698cd3cce172f3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92909b6ffe31594e29fd9463d69fba1576e8a96c3d588a4fa844c2f22ca9a130
MD5 e4b614f50d45778455fa54022c83062c
BLAKE2b-256 03b26861535f46ce5f12591994da004ee42e51fe5601fc10ce3b331cad91cb59

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 145.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3b22edb0988fd93bb34ac08f35028c713a73563208b1116eb197b426aa5c4e91
MD5 058c0ff9aaf5e1372da2f85fc01f3f4e
BLAKE2b-256 d4262150ff63083dbff9a18d0cc12d35f21aae939e69e0a2f3229161db06d2fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-win_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 145.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4de5345e1b8ee4d7f66e590157d0272492d2afc57f6b0ed6efddd5eed05b39e3
MD5 009fe1a0dc20fb29e9581948a1b64e67
BLAKE2b-256 a94e8b2774a8396ee194923de304e7196b85c28c53d38052de297e6af42b545f

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-win_amd64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cbe6248424105c19a8f723c9fecc5dcd52d5333a55afa25f67ef01a4318c198e
MD5 f5ccb8bc9d617eaa8cf28a64306dd197
BLAKE2b-256 f6790bcd6ca1d549d70b1b0f2f71fbf3ad4b77d228a71ba659b1ec42e1802719

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 649151d4e4aaefa8a0a2357f3b82330e7b8bdad8c7b7a7d3d9ba6b8735cccd95
MD5 f1f58a8b3110407a39a0348fa2c886a2
BLAKE2b-256 411ab367ab053b3ae8f38e5ec97fbc11dec6534de6a94043b8b9eaac9f932546

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fcf94c036d382fb766605200b7f8c19e62f5145396c19b5df8ac00491ba4b409
MD5 ad9310ed86f097479564a30e557f37bf
BLAKE2b-256 66521ad3657b6d7dff0f27aa499d0070053e03463d9f8d64628ad14ae246e72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e7299129e8982b329d63bb1ca3571fe494f8cb553d95f16356a0e3c8a326be
MD5 6fb5b76dd5058d4c7c1e7c0a449f9847
BLAKE2b-256 2881c2d5bf180dbfdf8b1180a0ee158542f49ad2390aa152f5b65f732858c240

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c03156c1ef92db7dbcb2935d33ac04dff1f56e806ebcfd92244e8a3e4eda8e46
MD5 83f9ab5a3e7d58a24f9eed1405e8997d
BLAKE2b-256 a4a59146ecdd64955ea83825aee2591f58a00ffb8140cc6fb89860bf2b6d818f

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 145.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 531c3c3999d38dd0e3968a9ffab81ee3f68cd7f52346268ba1d4491c7b862986
MD5 645026c3a4acdfc475acf8db9b0f6179
BLAKE2b-256 b205e70fb64d4781ef97e80f90d3c5eaf6e9442fa3a1b805e009b5b0622c9b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-win_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 145.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 072cde05ad27042540a3259c4c3d1851f726a1f575394e17584dbdd27ae7d26f
MD5 7d2ec0ef6a82037a67b463eb0d6dd924
BLAKE2b-256 66c141672ce8e060657bec977e87eb566ed14ad1edbc8f6f382fab377f8a44bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-win_amd64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 77d0509577dcea4285495399e7f82bb7c00384003cbd847109fc088d1023c423
MD5 7038b2a487beae1849a6b3080ac7f1a4
BLAKE2b-256 90f7489cda688ade07b234fc5790487203108ea519d4442c83a5be812813a992

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 97b0d9bf7e5674be444617d917079d2cd1f4f761c5d149d9aa84525a65cbf6b5
MD5 e5518fc8f3c75eade5c605e05c73a0e7
BLAKE2b-256 1ad1950d361cbeb359349b0ae034ef88817da7189447c96b8c500d66217924a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fa0a166229ee07f9cd88d14c80ff87fa07dea499cac33742b1cefecb110cb26b
MD5 a629b217bc8d18fbe3ef4f7e270532e1
BLAKE2b-256 313cab97140c5981645f9b79a8927d97bad32da9f4d8b207fbdfd58116be1bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd18f341536b438691a3fd038d35fe50d9c6de240c75dc05f02236939c63ac5
MD5 3b830231cddd3b62e38a387f6a6a8139
BLAKE2b-256 777d54cb5c582b166e37d7252c8d23619fca01b36b5eb230176a0da2675121a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 203cbc16995881d1503772d76f069a60bbd43e00441cf1963b9f66e7d1dcc940
MD5 ff3d8a198668cc4874458a122ea1a1cf
BLAKE2b-256 69cf638f8ad343e6ada5e018a42583dea969b0a04c1a48901049fa355fab29fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 144.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d59d37e147276c179e33d96f0f4f4958c92e3a5c4efa9f9286ef05e5acccaa69
MD5 d536b5b84999c6a47dc13e82b357f678
BLAKE2b-256 0283810dfc5e688e6891ca8c053e25ab51b1147bbf4499e96c2a4e542298d3f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-win_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11279458ca4300ece8188b519ab9d63b04b59a30b4a5b6feb97454bef2df62f3
MD5 5de7f9056e7e17f66d70168abf438f40
BLAKE2b-256 82061a684b2af0010ae054411074b29c34e348d2c1a3ab6871b5f3715f49c3f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-win_amd64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ba72407a9b0c3679c99083e594433d5122d4bbb32cb1cec64b12ffd497dedc70
MD5 b489d6331cc8366ce873d0af64c69f51
BLAKE2b-256 df0ee5c1f345d3b6439c4646d1da51483dce280d1a4d0b6a654cff81bad9129e

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 26bc92b20968c8a9a6fad01347b22ba9b695849ddf09f999ef275f3d8b06e921
MD5 56ce774c19a09f34fa75d44236f46a99
BLAKE2b-256 f392da5070b8a98f98b23ec4ec14f2d42c4a11c4c3de28be2070f40836547146

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4488cbfdf2471c7d45a00dc9a51a13f605433a8a956533157b34f249476639e1
MD5 2d9ed7ded7a71eb62b79d30945cf5b4c
BLAKE2b-256 6158acaf6374172e16857824b6f21884c5579f0a877b891919c486f05b89bc5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8696d5aadbe09d175d8881e7b010aff977b679b6d9012aef3d8bb21ff9f9da0
MD5 699224919b977863ad1966183eb4d727
BLAKE2b-256 4875cbf2ee4539d9e46945bc9e3bb06de87624ee6a4e697564cdc7f29e7606cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efe75a093811f7a600b00adcb4714f9c1994cd36644fffa151b45ddfc9b68931
MD5 0e7cb6f65996c87d06728cb0752720ee
BLAKE2b-256 47ed763f82f611b5b951ac271f4bf2a1875f9f598cbfac90ec6cb6021585afd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: accesscontrol-7.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 145.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for accesscontrol-7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6532187884a35a308b9c0832433bd7d5f602b8ec5c93c39b263760321e0914e0
MD5 5a21c0e1b1b7eb87759663bbef28171d
BLAKE2b-256 733231ad648e1bde30f116d511c4a33c83d13a84c9419a8dbc3562e710b1121a

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp310-cp310-win_amd64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2b4b89f43fddc76b79e58f47eecd4bd84a991f92f8f814e706c9bb5d16cb28fc
MD5 a381cc40a40681b28fa55d16a3e89026
BLAKE2b-256 c093d88347bb43f30005f7a6308c1e45451d4c95b386394ba85c1c10cc98bd0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d5089b2b27ca3998508e9f3682d73cd18aaf37344a273cb5b60bdecaf73a35ad
MD5 ebaa9913f9357ed048fe83c5b5ff5521
BLAKE2b-256 ef3b090c5fe5c3049dc40d89b913e5c3619444d339a9d99cb320aa7d01dca56a

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fcadc59fdcc875036d1b538125d91890dae458276dc729eeb9262458e7e88fb4
MD5 6e470dd59b30659a300a78abcdb0eac0
BLAKE2b-256 b8145c70bfd73e59bc1bed7eee5a7c6126aa8fd461621f784c4f5690be495163

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 452a6aa2923ae0b773715b3694eef449efa9de527f042afacda84207867ab44d
MD5 2b94e56b808d5f7082f9e4b08ad571d3
BLAKE2b-256 12e5a06ceeb04074bf4c04f0b79f8c5ef664e5b62bfbde3f7f5a19d5567d7f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file accesscontrol-7.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for accesscontrol-7.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d1e40062b9f632a31247675bd487408612a8032c97badc5754ca4047a2854a0
MD5 6a496a1818de03e5e0e778d1a1e100ec
BLAKE2b-256 54bf3649d67e25bc1b2d8e21cc237c45303c6e095a323050b88590f7887f530a

See more details on using hashes here.

Provenance

The following attestation bundles were made for accesscontrol-7.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/AccessControl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

7.4

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page