From 482620433c5428dfafee1b0d80a8f32c2a7674b5 Mon Sep 17 00:00:00 2001 From: Tim Walter Date: Sun, 25 Jan 2026 23:32:04 -0500 Subject: [PATCH] Add missing quote in hashlib.new docstring --- shared-bindings/hashlib/__init__.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-bindings/hashlib/__init__.c b/shared-bindings/hashlib/__init__.c index 2a6517791be95..354529cfa77cd 100644 --- a/shared-bindings/hashlib/__init__.c +++ b/shared-bindings/hashlib/__init__.c @@ -20,7 +20,7 @@ //| //| def new(name: str, data: bytes = b"") -> hashlib.Hash: //| """Returns a Hash object setup for the named algorithm. Raises ValueError when the named -//| algorithm is unsupported. Supported algorithms for ``name`` are ``'sha1`` and ``'sha256'``. +//| algorithm is unsupported. Supported algorithms for ``name`` are ``'sha1'`` and ``'sha256'``. //| //| :return: a hash object for the given algorithm //| :rtype: hashlib.Hash"""