diff options
| author | Michael Merickel <github@m.merickel.org> | 2018-11-18 12:56:45 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-18 12:56:45 -0600 |
| commit | 880fcbdf366e231a746dc3ab694b1b88771d23c2 (patch) | |
| tree | b0349a9bfb006c26d454b96aaf7114f1714ba776 /docs/tutorials/wiki2/src/tests | |
| parent | d4ce9d3f915b18425b4ce5224a51a89342270371 (diff) | |
| parent | 847d1835a5b76da4925ee3248e69148cc4235df9 (diff) | |
| download | pyramid-880fcbdf366e231a746dc3ab694b1b88771d23c2.tar.gz pyramid-880fcbdf366e231a746dc3ab694b1b88771d23c2.tar.bz2 pyramid-880fcbdf366e231a746dc3ab694b1b88771d23c2.zip | |
Merge pull request #5 from stevepiercy/drop-py2
Drop py2
Diffstat (limited to 'docs/tutorials/wiki2/src/tests')
| -rw-r--r-- | docs/tutorials/wiki2/src/tests/setup.py | 4 | ||||
| -rw-r--r-- | docs/tutorials/wiki2/src/tests/tutorial/views/default.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorials/wiki2/src/tests/setup.py b/docs/tutorials/wiki2/src/tests/setup.py index e2a30c0e7..f71998afc 100644 --- a/docs/tutorials/wiki2/src/tests/setup.py +++ b/docs/tutorials/wiki2/src/tests/setup.py @@ -25,8 +25,8 @@ requires = [ ] tests_require = [ - 'WebTest >= 1.3.1', # py3 compat - 'pytest>=3.7.4', + 'WebTest', + 'pytest', 'pytest-cov', ] diff --git a/docs/tutorials/wiki2/src/tests/tutorial/views/default.py b/docs/tutorials/wiki2/src/tests/tutorial/views/default.py index ad271fb46..ad8491b7b 100644 --- a/docs/tutorials/wiki2/src/tests/tutorial/views/default.py +++ b/docs/tutorials/wiki2/src/tests/tutorial/views/default.py @@ -1,4 +1,4 @@ -from pyramid.compat import escape +from html import escape import re from docutils.core import publish_parts |
