<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Python%2Fpylint</id>
	<title>Python/pylint - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=Python%2Fpylint"/>
	<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Python/pylint&amp;action=history"/>
	<updated>2026-05-07T04:22:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://aznot.com/index.php?title=Python/pylint&amp;diff=5780&amp;oldid=prev</id>
		<title>Kenneth at 20:47, 10 December 2020</title>
		<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=Python/pylint&amp;diff=5780&amp;oldid=prev"/>
		<updated>2020-12-10T20:47:55Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== pylint ==&lt;br /&gt;
&lt;br /&gt;
pylint - http://pypi.python.org/pypi/pylint&lt;br /&gt;
&lt;br /&gt;
Install:&lt;br /&gt;
 pip install pylint&lt;br /&gt;
&lt;br /&gt;
manual install:&lt;br /&gt;
 mkdir -p ~/.src ; cd ~/.src&lt;br /&gt;
 wget https://pypi.python.org/packages/source/p/pylint/pylint-0.27.0.tar.gz --no-check-certificate&lt;br /&gt;
 tar -zvxf pylint-0.27.0.tar.gz&lt;br /&gt;
 cd pylint-0.27.0&lt;br /&gt;
 sudo python setup.py install  # not this appears to install the dependencies as well!&lt;br /&gt;
&lt;br /&gt;
Usage:&lt;br /&gt;
 pylint myscript.py&lt;br /&gt;
&lt;br /&gt;
To get only the messages, and not the report:&lt;br /&gt;
 pylint -rn myscript.py&lt;br /&gt;
&lt;br /&gt;
== Max Line Length ==&lt;br /&gt;
&lt;br /&gt;
.pylintrc  (in your source code)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[FORMAT]&lt;br /&gt;
max-line-length=240&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ref: [https://stackoverflow.com/questions/30667612/pylint-overriding-max-line-length-in-individual-file]&lt;br /&gt;
&lt;br /&gt;
== Unnecessary parens after %r keyword ==&lt;br /&gt;
&lt;br /&gt;
 print(&amp;#039;Hello&amp;#039;)&lt;br /&gt;
&lt;br /&gt;
add this to your imports:&lt;br /&gt;
 from __future__ import print_function&lt;br /&gt;
&lt;br /&gt;
ref: [https://stackoverflow.com/questions/28694380/pylint-says-unnecessary-parens-after-r-keyword]&lt;/div&gt;</summary>
		<author><name>Kenneth</name></author>
	</entry>
</feed>