summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-18 04:25:06 -0700
committerSteve Piercy <web@stevepiercy.com>2018-08-18 04:25:06 -0700
commit9620ab291bcef19f6cb33880966fd1fe7afb98d8 (patch)
tree50644461e24f0db10fdac351833a9e833e39b40e /docs/narr
parent0dcffff8a561831608e052e808a50f309318924f (diff)
downloadpyramid-9620ab291bcef19f6cb33880966fd1fe7afb98d8.tar.gz
pyramid-9620ab291bcef19f6cb33880966fd1fe7afb98d8.tar.bz2
pyramid-9620ab291bcef19f6cb33880966fd1fe7afb98d8.zip
Clean up code-blocks in upgrading
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/upgrading.rst50
1 files changed, 25 insertions, 25 deletions
diff --git a/docs/narr/upgrading.rst b/docs/narr/upgrading.rst
index e0482d5a2..9568a6203 100644
--- a/docs/narr/upgrading.rst
+++ b/docs/narr/upgrading.rst
@@ -124,7 +124,7 @@ you can see DeprecationWarnings printed to the console when the tests run.
.. code-block:: bash
- $ python -Wd setup.py test -q
+ python -Wd setup.py test -q
The ``-Wd`` argument tells Python to print deprecation warnings to the console.
See `the Python -W flag documentation
@@ -137,19 +137,19 @@ deprecation warning from being issued. For example:
.. code-block:: bash
- $ python -Wd setup.py test -q
- # .. elided ...
- running build_ext
- /home/chrism/projects/pyramid/env27/myproj/myproj/views.py:3:
- DeprecationWarning: static: The "pyramid.view.static" class is deprecated
- as of Pyramid 1.1; use the "pyramid.static.static_view" class instead with
- the "use_subpath" argument set to True.
- from pyramid.view import static
- .
- ----------------------------------------------------------------------
- Ran 1 test in 0.014s
-
- OK
+ python -Wd setup.py test -q
+ # .. elided ...
+ running build_ext
+ /home/chrism/projects/pyramid/env27/myproj/myproj/views.py:3:
+ DeprecationWarning: static: The "pyramid.view.static" class is deprecated
+ as of Pyramid 1.1; use the "pyramid.static.static_view" class instead with
+ the "use_subpath" argument set to True.
+ from pyramid.view import static
+ .
+ ----------------------------------------------------------------------
+ Ran 1 test in 0.014s
+
+ OK
In the above case, it's line #3 in the ``myproj.views`` module (``from
pyramid.view import static``) that is causing the problem:
@@ -178,14 +178,14 @@ console:
.. code-block:: bash
- $ python -Wd setup.py test -q
- # .. elided ...
- running build_ext
- .
- ----------------------------------------------------------------------
- Ran 1 test in 0.014s
-
- OK
+ python -Wd setup.py test -q
+ # .. elided ...
+ running build_ext
+ .
+ ----------------------------------------------------------------------
+ Ran 1 test in 0.014s
+
+ OK
My application doesn't have any tests or has few tests
@@ -201,14 +201,14 @@ On UNIX, you can do that via:
.. code-block:: bash
- $ PYTHONWARNINGS=default $VENV/bin/pserve development.ini
+ PYTHONWARNINGS=default $VENV/bin/pserve development.ini
On Windows, you need to issue two commands:
.. code-block:: doscon
- c:\> set PYTHONWARNINGS=default
- c:\> Scripts\pserve development.ini
+ set PYTHONWARNINGS=default
+ Scripts\pserve development.ini
At this point, it's ensured that deprecation warnings will be printed to the
console whenever a codepath is hit that generates one. You can then click