summaryrefslogtreecommitdiff
path: root/doc/rpython.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/rpython.txt')
-rw-r--r--doc/rpython.txt30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/rpython.txt b/doc/rpython.txt
deleted file mode 100644
index 218f854..0000000
--- a/doc/rpython.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-Since 0.17, pylint contains a Restricted python checker (rpython).
-It contains the following checks:
-
-* unavailable keywords / builtins
-* multiple inheritance
-* mixing multiple types
-* non homogeneous list
-* global modification
-* negative slice index
-* using %r in format string
-* warn about special methods that are not implicitly called
-
-By default the rpython checker is deactivated. Activate it using :
-
- pylint --rpython-mode -rn ...
-
-(-rn is disabling statistics reports) or
-
- pylint --enable-checker=rpython ...
-
-to get only rpython checks (though in this case you won't be warned about
-regular errors).
-
-Another interesting thing is the rpython dedicated testing framework,
-testing that checked things are actually not translatable. I have the idea
-that this may be useful to generate some kind of documentation for
-features supported by rpython or not, and help spread information when a
-feature that wasn't supported is introduced in rpython. That's another
-story though... If you're interested, check
-pylint/test/test_rpycompilation.py.