#!/usr/bin/env python
+#
+# This file is part of mutest, a simple micro unit testing framework for C.
+#
+# mutest was written by Leandro Lucarella <llucax@gmail.com> and is released
+# under the BOLA license, please see the LICENSE file or visit:
+# http://blitiri.com.ar/p/bola/
+#
+# This is a Python implementation of the mutest main idea. This script load
+# the dynamic shared object (.so file) passed as argument, search them for test
+# cases and run them, collecting statistics.
+#
+# Please, read the README file for more details.
+#
import re
from sys import stdout, stderr