summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2021-09-19 18:49:10 -0400
committerGitHub <noreply@github.com>2021-09-20 06:49:10 +0800
commit9f6ac959a099702b89368d3b704044a2a8f231d8 (patch)
tree2bf3bdb0f5ddec16e042dea355349bfe9820f81a /docs
parent6bc56acc25658a3e3c3a2ee76e6e92369f3915ab (diff)
downloadcryptography-9f6ac959a099702b89368d3b704044a2a8f231d8.tar.gz
Migrate CRL implementation to Rust (#6276)
(Lots of commits that got squashed)
Diffstat (limited to 'docs')
-rw-r--r--docs/x509/reference.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst
index 92d6f9062..36dbd6db6 100644
--- a/docs/x509/reference.rst
+++ b/docs/x509/reference.rst
@@ -513,7 +513,7 @@ X.509 CRL (Certificate Revocation List) Object
1
>>> revoked_certificate = crl[0]
>>> type(revoked_certificate)
- <class 'cryptography.hazmat.backends.openssl.x509._RevokedCertificate'>
+ <class '...RevokedCertificate'>
>>> for r in crl:
... print(r.serial_number)
0