summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-04-12 15:46:09 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-04-12 15:46:09 +0200
commit0de52249820dcfa51dd7c42b3a48c40b0a6bb477 (patch)
tree7071e61c08a89f58a21891792ab832001234f8e2
parent4d278c697aedb8711aa1a9d17626e1181dbe06d2 (diff)
downloadpylint-git-0de52249820dcfa51dd7c42b3a48c40b0a6bb477.tar.gz
Add 1.9 release notes
-rw-r--r--doc/whatsnew/1.9.rst35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/whatsnew/1.9.rst b/doc/whatsnew/1.9.rst
new file mode 100644
index 000000000..6ddc30d2d
--- /dev/null
+++ b/doc/whatsnew/1.9.rst
@@ -0,0 +1,35 @@
+**************************
+ What's New In Pylint 1.9
+**************************
+
+:Release: 1.9
+:Date: |TBA|
+
+
+Summary -- Release highlights
+=============================
+
+* None so far
+
+New checkers
+============
+
+* A new Python 3 checker was added to warn about the removed ``operator.div`` function.
+
+* A new Python 3 checker was added to warn about accessing functions that have been
+ moved from the urllib module in corresponding subpackages, such as ``urllib.request``.
+
+ .. code-block:: python
+
+ from urllib import urlencode
+
+ Instead the previous code should use ``urllib.parse`` or ``six.moves`` to import a
+ module in a Python 2 and 3 compatible fashion:
+
+ .. code-block:: python
+
+ from six.moves.urllib.parse import urlencode
+
+
+Other Changes
+=============