diff options
| author | Tres Seaver <tseaver@palladion.com> | 2014-02-16 21:05:35 -0500 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2014-02-16 21:05:35 -0500 |
| commit | 0c25b7b36f6c8c43513bd557ac63bdde64168a46 (patch) | |
| tree | 1cd8b64f2be030c68267c1ab0ceaca44e6a7e7a2 | |
| parent | 2292ae27dc0061f524a59a5e25b4578b0885d4b9 (diff) | |
| download | pyramid-0c25b7b36f6c8c43513bd557ac63bdde64168a46.tar.gz pyramid-0c25b7b36f6c8c43513bd557ac63bdde64168a46.tar.bz2 pyramid-0c25b7b36f6c8c43513bd557ac63bdde64168a46.zip | |
Clarify vs. import time.
| -rw-r--r-- | docs/quick_tutorial/hello_world.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst index c7a8eaf5e..86e1319f0 100644 --- a/docs/quick_tutorial/hello_world.rst +++ b/docs/quick_tutorial/hello_world.rst @@ -71,11 +71,11 @@ New to Python web programming? If so, some lines in module merit explanation: #. *Line 11*. The ``if __name__ == '__main__':`` is Python's way of - saying "Start here when running from the command line". + saying "Start here when running from the command line", rather than + when this module is imported. #. *Lines 12-14*. Use Pyramid's :term:`configurator` to connect - :term:`view` code to a particular URL - :term:`route`. + :term:`view` code to a particular URL :term:`route`. #. *Lines 6-7*. Implement the view code that generates the :term:`response`. @@ -111,4 +111,4 @@ Extra Credit then reload your browser. See the exception in the console? #. The ``GI`` in ``WSGI`` stands for "Gateway Interface". What web - standard is this modelled after?
\ No newline at end of file + standard is this modelled after? |
