aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDimitri Papadopoulos Orfanos <3234522+DimitriPapadopoulos@users.noreply.github.com>2024-05-05 18:04:32 +0200
committerGitHub <noreply@github.com>2024-05-05 16:04:32 +0000
commit43e905b5254176ebecb1e33a318abd24e9c6367b (patch)
tree12cc5d4e788ba112504e0820632ff41ac5428c98 /src
parent49711bab0a6e511b0e5ae0814185fd17d5696abe (diff)
downloadpyca-cryptography-43e905b5254176ebecb1e33a318abd24e9c6367b.zip
pyca-cryptography-43e905b5254176ebecb1e33a318abd24e9c6367b.tar.gz
pyca-cryptography-43e905b5254176ebecb1e33a318abd24e9c6367b.tar.bz2
Use raw string for literal backslashes (#10934)
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/cryptography.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/cryptography.py b/src/_cffi_src/openssl/cryptography.py
index 11afbdc..fc23960 100644
--- a/src/_cffi_src/openssl/cryptography.py
+++ b/src/_cffi_src/openssl/cryptography.py
@@ -4,7 +4,7 @@
from __future__ import annotations
-INCLUDES = """
+INCLUDES = r"""
/* define our OpenSSL API compatibility level to 1.1.0. Any symbols older than
that will raise an error during compilation. */
#define OPENSSL_API_COMPAT 0x10100000L