Uninstall python modules.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Thu, 29 Sep 2011 00:23:44 +0300
changeset 1013 49a5602070a9
parent 1012 719b12ec01c8
child 1014 4716ec9e29f5
Uninstall python modules.
python.rst
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python.rst	Thu Sep 29 00:23:44 2011 +0300
@@ -0,0 +1,40 @@
+.. -*- coding: utf-8 -*-
+
+========
+ Python
+========
+.. contents::
+
+Licence and history of Python.
+==============================
+
+  http://docs.python.org/dev/license.htm
+
+Byte compile .py and check for errors.
+======================================
+::
+
+  $ python -m compileall dir
+
+Uninstall python modules.
+=========================
+
+Install again and save list of installed files::
+
+  $ python setup.py install --record files.txt
+  $ rm `cat files.txt`
+
+Code analyzers and style checkers.
+==================================
+
+Pylint.
+-------
+
+  http://www.logilab.org/857
+  http://pypi.python.org/pypi/pylint
+
+PyChecker.
+----------
+
+  http://pychecker.sourceforge.net/
+