Merge pull request #6401 from gilles-peskine-arm/config.py-python-version-development

Add a note that config.py must remain compatible with Python 3.4
This commit is contained in:
Manuel Pégourié-Gonnard 2022-10-11 12:57:19 +02:00 committed by GitHub
commit 74b748dafe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,11 @@ Basic usage, to read the Mbed TLS or Mbed Crypto configuration:
if 'MBEDTLS_RSA_C' in config: print('RSA is enabled')
"""
# Note that as long as Mbed TLS 2.28 LTS is maintained, the version of
# this script in the mbedtls-2.28 branch must remain compatible with
# Python 3.4. The version in development may only use more recent features
# in parts that are not backported to 2.28.
## Copyright The Mbed TLS Contributors
## SPDX-License-Identifier: Apache-2.0
##