This script is for Slackware 13.0 only and may be outdated.

SlackBuilds Repository

13.0 > Development > pychecker (0.8.18)

PyChecker is a tool for finding bugs in python source code. It finds problems
that are typically caught by a compiler for less dynamic languages, like C and
C++. It is similar to lint. Because of the dynamic nature of python, some
warnings may be incorrect; however, spurious warnings should be fairly
infrequent.

PyChecker works in a combination of ways. First, it imports each module. If
there is an import error, the module cannot be processed. The import provides
some basic information about the module. The code for each function, class,
and method is checked for possible problems.

Types of problems that can be found include:
* No global found (e.g., using a module without importing it)
* Passing the wrong number of parameters to functions/methods/constructors
* Passing the wrong number of parameters to builtin functions & methods
* Using format strings that don't match arguments
* Using class methods and attributes that don't exist
* Changing signature when overriding a method
* Redefining a function/class/method in the same scope
* Using a variable before setting it
* self is not the first parameter defined for a method
* Unused globals and locals (module or variable)
* Unused function/method arguments (can ignore self)
* No doc strings in modules, classes, functions, and methods

Maintained by: LukenShiro
Keywords: python,lint,checker
ChangeLog: pychecker

Homepage:
http://pychecker.sourceforge.net

Source Downloads:
pychecker-0.8.18.tar.gz (ef156a631df46de150a364912f2e36c8)

Download SlackBuild:
pychecker.tar.gz
pychecker.tar.gz.asc (FAQ)

(the SlackBuild does not include the source)

Individual Files:
README
pychecker.SlackBuild
pychecker.info
slack-desc

Validated for Slackware 13.0

See our HOWTO for instructions on how to use the contents of this repository.

Access to the repository is available via:
ftp git cgit http rsync

© 2006-2024 SlackBuilds.org Project. All rights reserved.
Slackware® is a registered trademark of Patrick Volkerding
Linux® is a registered trademark of Linus Torvalds