Metadata-Version: 2.0
Name: colour-valgrind
Version: 0.3.0
Summary: Wraps Valgrind to colour the output.
Home-page: http://github.com/MatthewCox/colour-valgrind
Author: Matthew Cox
Author-email: matthewcpcox@gmail.com
License: MIT
Keywords: valgrind color colour filter
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Requires-Dist: colorama
Requires-Dist: regex

A python wrapper for Valgrind that colours the output for better readability.

Usage
-----

Just use `colour-valgrind` instead of `valgrind` - all args are passed through.

`--test FILE` has been added to feed in an existing valgrind log file to colour.

Usage as a lib
--------------

You can also use the filter as a library function, if you're running valgrind
from another python project.

```
from colourvalgrind import colour_valgrind

...

print(colour_valgrind(valgrind_output))
```



