diff options
| author | Michael Merickel <michael@merickel.org> | 2015-02-13 18:31:09 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2015-02-13 18:31:09 -0600 |
| commit | cd298a4fde2b7c171417b7460a6128996a3db691 (patch) | |
| tree | 0118fb1be0c0652fe6f1b016ca1c81fe6c28deaf | |
| parent | 5c9ca32605c37dbc729b1143ba9163b87ecb123d (diff) | |
| parent | c94c39bf9cc6a5c0fd9207046e8feb8b9a917447 (diff) | |
| download | pyramid-cd298a4fde2b7c171417b7460a6128996a3db691.tar.gz pyramid-cd298a4fde2b7c171417b7460a6128996a3db691.tar.bz2 pyramid-cd298a4fde2b7c171417b7460a6128996a3db691.zip | |
Merge pull request #1578 from davisagli/fix.docs
Fix a couple minor documentation issues
| -rw-r--r-- | HACKING.txt | 2 | ||||
| -rw-r--r-- | pyramid/scripts/pserve.py | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/HACKING.txt b/HACKING.txt index 16c17699c..e104869ec 100644 --- a/HACKING.txt +++ b/HACKING.txt @@ -195,7 +195,7 @@ Test Coverage ------------- - The codebase *must* have 100% test statement coverage after each commit. - You can test coverage via ``tox -e coverage``, or alternately by installing + You can test coverage via ``tox -e cover``, or alternately by installing ``nose`` and ``coverage`` into your virtualenv (easiest via ``setup.py dev``) , and running ``setup.py nosetests --with-coverage``. diff --git a/pyramid/scripts/pserve.py b/pyramid/scripts/pserve.py index d2ea1719b..3b79aabd7 100644 --- a/pyramid/scripts/pserve.py +++ b/pyramid/scripts/pserve.py @@ -727,9 +727,7 @@ def install_reloader(poll_interval=1, extra_files=None): # pragma: no cover Install the reloading monitor. On some platforms server threads may not terminate when the main - thread does, causing ports to remain open/locked. The - ``raise_keyboard_interrupt`` option creates a unignorable signal - which causes the whole application to shut-down (rudely). + thread does, causing ports to remain open/locked. """ ensure_echo_on() mon = Monitor(poll_interval=poll_interval) |
