summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst5
-rw-r--r--src/pyramid/scripts/pshell.py2
-rw-r--r--tox.ini4
3 files changed, 6 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 027a4e236..8642e75a8 100644
--- a/README.rst
+++ b/README.rst
@@ -13,9 +13,10 @@ Pyramid
:target: https://web.libera.chat/#pyramid
:alt: IRC Libera.Chat
-`Pyramid <https://trypyramid.com/>`_ is a small, fast, down-to-earth, open
-source Python web framework. It makes real-world web application development
+Pyramid is a small, fast, down-to-earth, open source Python web framework.
+It makes real-world web application development
and deployment more fun, more predictable, and more productive.
+`Try Pyramid <https://trypyramid.com/>`_, browse its add-ons and documentation, and get an overview.
.. code-block:: python
diff --git a/src/pyramid/scripts/pshell.py b/src/pyramid/scripts/pshell.py
index 819a320cf..09baf1736 100644
--- a/src/pyramid/scripts/pshell.py
+++ b/src/pyramid/scripts/pshell.py
@@ -188,7 +188,7 @@ class PShellCommand:
with setup_manager(env):
# remove any objects from default help that were overidden
for k, v in env.items():
- if k not in orig_env or v != orig_env[k]:
+ if k not in orig_env or v is not orig_env[k]:
if getattr(v, '__doc__', False):
env_help[k] = v.__doc__.replace("\n", " ")
else:
diff --git a/tox.ini b/tox.ini
index 0f166e6aa..a64ad5387 100644
--- a/tox.ini
+++ b/tox.ini
@@ -28,8 +28,8 @@ commands =
python setup.py check -r -s -m
check-manifest
deps =
- flake8~=4.0.1
- black~=22.1.0
+ flake8~=5.0.4
+ black~=22.6.0
isort~=5.10
readme_renderer
check-manifest