<p dir="ltr"><br>
On Sep 13, 2013 2:31 PM, &quot;Frankie Onuonga&quot; &lt;<a href="mailto:frankie.onuonga@gmail.com">frankie.onuonga@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Sep 12, 2013 at 10:29 AM, Miroslav Suchý &lt;<a href="mailto:msuchy@redhat.com">msuchy@redhat.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; On 09/12/2013 11:04 AM, Pierre-Yves Chibon wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;   class ProductionConfig(Config):<br>
&gt;&gt;&gt;&gt; &gt;-    &quot;&quot;&quot;Production Environment: The environmental values which are set for a machine that is being used in production. This disables the machine from displaying errors and warnings. Secret keys, backend passwords and the path/location to the database is also set here&quot;&quot;&quot;<br>

&gt;&gt;&gt;&gt; &gt;+    &quot;&quot;&quot;Production Environment: The environmental values which are set for a\<br>
&gt;&gt;&gt;&gt; &gt;+        machine that is being used in production. \<br>
&gt;&gt;&gt;&gt; &gt;+       This disables the machine from displaying errors and warnings. \<br>
&gt;&gt;&gt;&gt; &gt;+       Secret keys, backend passwords and the path or location to the \<br>
&gt;&gt;&gt;&gt; &gt;+        database is also set here&quot;&quot;&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; If I like having lines below 80 characters, I disagree with the use of &#39;\&#39; in<br>
&gt;&gt;&gt; documentation.<br>
&gt;<br>
&gt; I had used multilines cause of coding standards at pep8. I think not more than 75 characters a line.<br>
&gt; Kindly do advice on what rule of thumb we should follow for us.<br>
&gt; I am not too sure what to use instead of the &quot;\&quot; . Kindly do advice on that.<br>
&gt;<br>
&gt; Also thank you so much for being such a great team.  </p>
<p dir="ltr">Ah, I see what the misunderstanding is.  Breaking lines at 79 chars is good.  How to break the lines is the only objection here.  In python, triple quotes start a multiline string.  So there&#39;s no need to have backslashes for continuation. You can just do this:</p>

<p dir="ltr"> &quot;&quot;&quot;Production Environment: The environmental values which are set for a<br>
        machine that is being used in production.<br>
       This disables the machine from displaying errors and warnings.<br>
[...]<br>
&quot;&quot;&quot;</p>
<p dir="ltr">-Toshio<br>
</p>