This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 'zlib compression' not found in set(['RLE', 'ZLIB', None])
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: christian.heimes Nosy List: christian.heimes, python-dev
Priority: normal Keywords:

Created on 2016-09-05 22:23 by christian.heimes, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg274448 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2016-09-05 22:23
http://buildbot.python.org/all/builders/AMD64%20FreeBSD%209.x%202.7/builds/1397/steps/test/logs/stdio fails:

======================================================================
FAIL: test_compression (test.test_ssl.ThreadedTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/home/buildbot/python/2.7.koobs-freebsd9/build/Lib/test/test_ssl.py", line 2875, in test_compression
    self.assertIn(stats['compression'], { None, 'ZLIB', 'RLE' })
AssertionError: 'zlib compression' not found in set(['RLE', 'ZLIB', None])

It's probably fine to add 'zlib compression' to the list of accepted compression names.
msg274461 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-05 23:13
New changeset 5566732c8ac5 by Christian Heimes in branch '3.5':
Issue #26470: Use short name rather than name for compression name to fix #27958.
https://hg.python.org/cpython/rev/5566732c8ac5

New changeset 2593ed9a6a62 by Christian Heimes in branch '2.7':
Issue #26470: Use short name rather than name for compression name to fix #27958.
https://hg.python.org/cpython/rev/2593ed9a6a62
msg274463 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-09-05 23:14
New changeset d92f26a53b70 by Christian Heimes in branch 'default':
Issue #26470: Use short name rather than name for compression name to fix #27958.
https://hg.python.org/cpython/rev/d92f26a53b70
History
Date User Action Args
2022-04-11 14:58:35adminsetgithub: 72145
2016-09-06 09:37:45christian.heimessetstatus: open -> closed
resolution: fixed
stage: needs patch -> resolved
2016-09-05 23:14:46python-devsetmessages: + msg274463
2016-09-05 23:13:56python-devsetnosy: + python-dev
messages: + msg274461
2016-09-05 22:23:57christian.heimescreate