Skip to content

Commit 8e00707

Browse files
committed
Merge pull request realpython#340 from ugurthemaster/master
Update learning.rst
2 parents 383009a + bd71474 commit 8e00707

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

docs/intro/learning.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,12 @@ This is Python's reference manual, it covers the syntax and the core semantics o
169169
language.
170170

171171
`The Python Language Reference <http://docs.python.org/reference/index.html>`_
172+
173+
Python Pocket Reference
174+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
175+
176+
Python Pocket Reference, written by Mark Lutz, is an easy to use reference to the
177+
core language, with descriptions of commonly used modules and toolkits. It covers
178+
Python 3 and 2.6 versions.
179+
180+
`Python Pocket Reference <http://shop.oreilly.com/product/9780596158095.do>`_

docs/scenarios/cli.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ Command Line Applications
66
Clint
77
-----
88

9-
.. todo:: Write about Clint
9+
`clint <https://pypi.python.org/pypi/clint/>`_ is a python module which is
10+
filled with very useful tools for developing commandline applications.
11+
It supports features such as; CLI Colors and Indents, Simple and Powerful
12+
Column Printer, Iterator based progress bar and Implicit argument handling.
1013

1114
docopt
1215
------
1316

1417
`docopt <http://docopt.org/>`_ is a lightweight, highly Pythonic package that
1518
allows creating command line interfaces easily and intuitively, by parsing
16-
POSIX-style usage instructions.
19+
POSIX-style usage instructions.

docs/writing/documentation.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ Reference`_ should help you familiarize yourself with its syntax.
9494
Code Documentation Advice
9595
-------------------------
9696

97-
Comments clarify code and begin with a hash (``#``).
97+
Comments clarify the code and they are added with purpose of making the
98+
code easier to understand. In Python, comments begin with a hash
99+
(number sign) (``#``).
98100

99101
.. _docstring-ref:
100102

0 commit comments

Comments
 (0)