python.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 29 Sep 2011 00:23:44 +0300
changeset 1013 49a5602070a9
child 1014 4716ec9e29f5
permissions -rw-r--r--
Uninstall python modules.

.. -*- 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/