py-responses: updated to 0.14.0
0.14.0 ------ * Added `responses.matchers`. * Moved `responses.json_params_matcher` to `responses.matchers.json_params_matcher` * Moved `responses.urlencoded_params_matcher` to `responses.matchers.urlencoded_params_matcher` * Added `responses.matchers.query_param_matcher`. This matcher allows you to match query strings with a dictionary. * Added `auto_calculate_content_length` option to `responses.add()`. When enabled, this option will generate a `Content-Length` header based on the number of bytes in the response body.
This commit is contained in:
parent
f7e8a719cd
commit
9c61427d1e
3 changed files with 11 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.22 2021/08/11 09:48:41 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.23 2021/09/19 10:45:51 adam Exp $
|
||||
|
||||
DISTNAME= responses-0.13.4
|
||||
DISTNAME= responses-0.14.0
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= net python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=r/responses/}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2021/03/18 07:29:31 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.4 2021/09/19 10:45:51 adam Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -8,6 +8,9 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|||
${PYSITELIB}/responses/__init__.py
|
||||
${PYSITELIB}/responses/__init__.pyc
|
||||
${PYSITELIB}/responses/__init__.pyo
|
||||
${PYSITELIB}/responses/matchers.py
|
||||
${PYSITELIB}/responses/matchers.pyc
|
||||
${PYSITELIB}/responses/matchers.pyo
|
||||
${PYSITELIB}/responses/test_responses.py
|
||||
${PYSITELIB}/responses/test_responses.pyc
|
||||
${PYSITELIB}/responses/test_responses.pyo
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.21 2021/08/11 09:48:41 adam Exp $
|
||||
$NetBSD: distinfo,v 1.22 2021/09/19 10:45:51 adam Exp $
|
||||
|
||||
SHA1 (responses-0.13.4.tar.gz) = 0a890580fdeefd9b12bf4269cb50b59fb6c421af
|
||||
RMD160 (responses-0.13.4.tar.gz) = 18da5101e19d4ffc11c12ce1f87a14b66696933b
|
||||
SHA512 (responses-0.13.4.tar.gz) = 645bb967d2ff601a49c22e603ac1ab0c1f070dc6d62ad3b87ec58fe97cae7e4882c0068b565a24ba05ec1a3cccb8e9d90fb1b398bf79935c7a8b208f3ead1920
|
||||
Size (responses-0.13.4.tar.gz) = 30608 bytes
|
||||
SHA1 (responses-0.14.0.tar.gz) = 1e56c09b22b645868ee778bc8c9b0d778022e31a
|
||||
RMD160 (responses-0.14.0.tar.gz) = 0f96a19e993885bf9bce5be6bb1770a9f335b75e
|
||||
SHA512 (responses-0.14.0.tar.gz) = abc117e5fb9e065202520342e1e5dc4862e5ba553899bf0427726bff02f581124d2d2225371180c97b04fd258119b9511b3319622402a44411ebf51614d26022
|
||||
Size (responses-0.14.0.tar.gz) = 32666 bytes
|
||||
|
|
Loading…
Reference in a new issue