X Tutup
Skip to content

Commit a85017f

Browse files
committed
Issue python#16694: Add a pure Python implementation of the operator module.
Patch by Zachary Ware.
1 parent c9f5ca2 commit a85017f

File tree

10 files changed

+536
-96
lines changed

10 files changed

+536
-96
lines changed

Lib/hmac.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
import warnings as _warnings
7-
from operator import _compare_digest as compare_digest
7+
from _operator import _compare_digest as compare_digest
88

99
trans_5C = bytes((x ^ 0x5C) for x in range(256))
1010
trans_36 = bytes((x ^ 0x36) for x in range(256))

0 commit comments

Comments
 (0)
X Tutup