Skip to content

Commit d711707

Browse files
committed
Fix CI: add spell-checker ignores and remove passing expectedFailure
- Add hashopenssl, dklen to spell-checker ignore list in hashlib.rs - Remove expectedFailure from test_keywordonlyarg.test_mangling (now passes due to kwdefaults name mangling fix)
1 parent 7a7dfc6 commit d711707

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Lib/test/test_keywordonlyarg.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ def test_issue13343(self):
156156
# used to fail with a SystemError.
157157
lambda *, k1=unittest: None
158158

159-
@unittest.expectedFailure # TODO: RUSTPYTHON
160159
def test_mangling(self):
161160
class X:
162161
def f(self, *, __a=42):

crates/stdlib/src/hashlib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// spell-checker:ignore usedforsecurity HASHXOF
1+
// spell-checker:ignore usedforsecurity HASHXOF hashopenssl dklen
22
// NOTE: Function names like `openssl_md5` match CPython's `_hashopenssl.c` interface
33
// for compatibility, but the implementation uses pure Rust crates (md5, sha2, etc.),
44
// not OpenSSL.

0 commit comments

Comments
 (0)