summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #447 from miketheman/miketheman/testsHEADmainBert JW Regeer2023-01-223-1/+3
|\ | | | | Test against Python 3.11
| * Update classifiersMike Fiedler2023-01-191-0/+1
| |
| * Test against Python 3.11Mike Fiedler2023-01-191-1/+1
| |
| * Test against Python 3.11Mike Fiedler2023-01-191-0/+1
|/
* Merge pull request #445 from Pylons/dependabot/github_actions/actions/checkout-3Bert JW Regeer2022-12-271-4/+4
|\ | | | | Bump actions/checkout from 2 to 3
| * Bump actions/checkout from 2 to 3dependabot[bot]2022-12-271-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* | Merge pull request #444 from ↵Bert JW Regeer2022-12-271-4/+4
|\ \ | | | | | | | | | | | | Pylons/dependabot/github_actions/actions/setup-python-4 Bump actions/setup-python from 2 to 4
| * | Bump actions/setup-python from 2 to 4dependabot[bot]2022-12-271-4/+4
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* | Chase rename to allowlist in toxBert JW Regeer2022-12-271-1/+1
|/
* Add dependabot to update github action versionsBert JW Regeer2022-12-271-0/+10
|
* Update badge for CI statusBert JW Regeer2022-11-201-2/+3
|
* Merge pull request #441 from jvanasco/mainBert JW Regeer2022-11-169-13/+15
|\ | | | | rename "master" to "main"
| * set default languagejonathan vanasco2022-11-161-1/+1
| |
| * rename "master" to "main"jonathan vanasco2022-11-169-12/+14
|/
* Merge pull request #436 from Pylons/enhancement/pyupgrade-3.7Michael Merickel2022-05-2426-98/+97
|\ | | | | Enhancement: Remove Python 3.6, add Python 3.10 and update syntax to Python 3.7
| * Ignore pypy-3.8 on WindowsBert JW Regeer2022-05-241-2/+2
| |
| * Use Pypy-3.8 instead of pypy3Bert JW Regeer2022-05-241-1/+1
| |
| * Make black happyBert JW Regeer2022-05-243-11/+9
| |
| * Replace setDaemon with just setting the attributeBert JW Regeer2022-05-241-1/+1
| |
| * Replace pep517 with buildBert JW Regeer2022-05-241-5/+5
| | | | | | | | It's the new name for the project
| * Fix syntax for ci-tests.ymlBert JW Regeer2022-05-241-0/+1
| |
| * Drop Py 3.6 and add Py 3.10Bert JW Regeer2022-05-243-4/+4
| |
| * Run pyupgrade --py37-plus across codebaseBert JW Regeer2022-05-2422-76/+76
|/
* Merge pull request #424 from d70-t/deflate_with_zlib_containermasterBert JW Regeer2020-12-092-2/+22
|\ | | | | deflate'd response: use RFC compliant decompression by default
| * deflate'd response: use RFC compliant decompression by defaultTobias Kölling2020-12-092-2/+22
|/ | | | | | | | | | | | | | | | | | | | | | [RFC7230](https://tools.ietf.org/html/rfc7230#section-4.2.2) specifies that > The "deflate" coding is a "zlib" data format [RFC1950](https://tools.ietf.org/html/rfc1950) containing a > "deflate" compressed data stream [RFC1951](https://tools.ietf.org/html/rfc1951) that uses a combination of > the Lempel-Ziv (LZ77) compression algorithm and Huffman coding. but also > Note: Some non-conformant implementations send the "deflate" > compressed data without the zlib wrapper. Thus deflate coded data should be expected to be received within a "zlib" container, however if no container is present, the data shouldn't be rejected. This patch tries to decode that data using RFC7230 conformant decoding and falls back to unwrapped decoding only if the previous attempt didn't work.
* Merge pull request #390 from Pylons/webob-ngBert JW Regeer2020-11-2853-2596/+1564
|\ | | | | WebOb 2.0 - Now with less Python 2
| * Drop Py3.4/3.5 add Py3.6->3.9webob-ngBert JW Regeer2020-11-281-3/+4
| |
| * Move items out of compat: url_parse/url_unquote and moreBert JW Regeer2020-11-288-57/+71
| |
| * Rely on compare_digest instead of strings_differBert JW Regeer2020-11-283-93/+4
| |
| * Format using isort/black to satisfy linterBert JW Regeer2020-11-2831-127/+148
| |
| * Upgrade sample code in docs to Python 3Bert JW Regeer2020-11-286-225/+263
| |
| * Switch to Github ActionsBert JW Regeer2020-11-285-118/+140
| |
| * set() -> {}Bert JW Regeer2020-11-281-1/+1
| |
| * Drop u"" prefixBert JW Regeer2020-11-281-2/+2
| |
| * Remove unnecesary encode to latin-1Bert JW Regeer2020-11-281-1/+1
| |
| * Remove coding lineBert JW Regeer2020-11-281-2/+0
| |
| * yield from instead of loop + yieldBert JW Regeer2020-11-282-8/+4
| |
| * Catch/raise OSError instead of IOErrorBert JW Regeer2020-11-284-6/+6
| |
| * Use bare super()Bert JW Regeer2020-11-281-2/+2
| |
| * Cleanup comprehensionBert JW Regeer2020-11-284-9/+9
| |
| * Drop object from class definitionBert JW Regeer2020-11-2828-180/+180
| |
| * Add test for _encode_multipart which is not public APIBert JW Regeer2020-11-282-1/+27
| |
| * Test was modified in 254f7a68 accidentallyBert JW Regeer2020-11-281-1/+1
| |
| * Add missing test for coverageBert JW Regeer2020-11-281-4/+9
| |
| * s/isAlive/is_alive/Bert JW Regeer2020-11-281-1/+1
| |
| * Remove __unicode__Bert JW Regeer2020-11-284-20/+7
| |
| * Remove duplicate isinstance checksBert JW Regeer2020-11-281-7/+0
| |
| * Remove no longer reachable checkBert JW Regeer2020-11-281-13/+0
| | | | | | | | | | Python will raise a TypeError for us when any part of the app_iter contains a non-byte object.
| * header_getter now checks value type before usingBert JW Regeer2020-11-282-2/+12
| |
| * parsedate_tz defaults to UTCBert JW Regeer2020-11-282-48/+31
| | | | | | | | So if the timezone is missing, we no longer need to manually add it.