From 5d2139870da80b3b764235c96b0fbafeea569b43 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Wed, 2 Sep 2009 16:10:11 -0400 Subject: [PATCH] validation typo --- special-method-names.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/special-method-names.html b/special-method-names.html index 4572783..9bb28a1 100644 --- a/special-method-names.html +++ b/special-method-names.html @@ -233,7 +233,7 @@ class _ZipDecrypter: def __call__(self, c): assert isinstance(c, int) k = self.key2 | 2 - c = c ^ (((k * (k^1)) >> 8) & 255) + c = c ^ (((k * (k^1)) >> 8) & 255) self._UpdateKeys(c) return c .