[Python-checkins] bpo-31787: Skip refleak check when _hashlib is not available (GH-5660)

Miss Islington (bot) webhook-mailer at python.org
Tue Feb 13 10:07:40 EST 2018


https://github.com/python/cpython/commit/e81a6c86c89da02a0da719926198ab72edab2e05
commit: e81a6c86c89da02a0da719926198ab72edab2e05
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-02-13T07:07:34-08:00
summary:

bpo-31787: Skip refleak check when _hashlib is not available (GH-5660)

(cherry picked from commit f0bc645dfede8118c84844bad319cd952c4d1905)

Co-authored-by: INADA Naoki <methane at users.noreply.github.com>

files:
M Lib/test/test_hashlib.py

diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py
index f7df872793c2..5b0218b08567 100644
--- a/Lib/test/test_hashlib.py
+++ b/Lib/test/test_hashlib.py
@@ -163,6 +163,7 @@ def hash_constructors(self):
         return itertools.chain.from_iterable(constructors)
 
     @support.refcount_test
+    @unittest.skipIf(c_hashlib is None, 'Require _hashlib module')
     def test_refleaks_in_hash___init__(self):
         gettotalrefcount = support.get_attribute(sys, 'gettotalrefcount')
         sha1_hash = c_hashlib.new('sha1')



More information about the Python-checkins mailing list