summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2007-02-26 08:51:54 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2007-02-26 08:51:54 +0100
commitb96a92a20d1030c9734861a40c25d717edcfcb06 (patch)
tree75ec5793b28eab4879fce86fb70129fab47b3164
parent98920f55da2b48b3003928d2b345c06646971467 (diff)
downloadpylint-git-b96a92a20d1030c9734861a40c25d717edcfcb06.tar.gz
complete changelog
-rw-r--r--ChangeLog12
1 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7da8aadd4..af6edebd1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@ ChangeLog for PyLint
====================
2007-02-22 -- 0.13.0
+ * new RPython (Restricted Python) checker for PyPy felow or people
+ wanting to get a compiled version of their python program using the
+ translator of the PyPy project. For more information about PyPy or
+ RPython, visit http://codespeak.net/pypy/
+
* new E0104 and E0105 messages introduced to respectivly warn about
"return" and "yield" outside function or method
* new E0106 message when "yield" and "return something" are mixed in a
@@ -9,13 +14,16 @@ ChangeLog for PyLint
* new W0107 message for unnecessary pass statement
* new W0614 message to differentiate between unused 'import X' and
unused 'from X import *" (#3209, patch submitted by Daniel Drake)
- * msvs reporter for Visual Studio line number reporting (#3285)
- * allow disable-all option inline (#3218, patch submitted by Daniel Drake)
* included Daniel Drake's patch to have a different message E1003 instead of
E1001 when a missing member is found but an inference failure has been
detected
+
+ * msvs reporter for Visual Studio line number reporting (#3285)
+
+ * allow disable-all option inline (#3218, patch submitted by Daniel Drake)
* --init-hook option to call arbitray code necessary to set
environment (eg sys.path) (#3156)
+
* One more Daniel's patch fixing a command line option parsing
problem, this'll definitly be the DDrake release :)
* fix #3184: crashes on "return" outside function