Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Latest commit

 

History

History
44 lines (26 loc) · 1.47 KB

CHANGELOG.rst

File metadata and controls

44 lines (26 loc) · 1.47 KB

Changelog

.. currentmodule:: treq

20.3.0 (2020-03-15)

Features

  • Python 3.7 support. (#228)

Bugfixes

  • treq.testing.RequestTraversalAgent now passes its memory reactor to the twisted.web.server.Site it creates, preventing the Site from polluting the global reactor. (#225)
  • treq.testing no longer generates deprecation warnings about twisted.test.proto_helpers.MemoryReactor. (#253)

Improved Documentation

  • The download_file.py example has been updated to do a streaming download with unbuffered=True. (#233)
  • The agent parameter to treq.request() has been documented. (#235)
  • The type of the headers element of a response tuple passed to treq.testing.RequestSequence is now correctly documented as str. (#237)

Deprecations and Removals

  • Drop support for Python 3.4. (#240)

Misc