File tree Expand file tree Collapse file tree 6 files changed +31
-2
lines changed
tests/functional/s/symlink Expand file tree Collapse file tree 6 files changed +31
-2
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ What's New in Pylint 2.13.0?
6
6
============================
7
7
Release date: TBA
8
8
9
- * Pyreverse - add output in mermaidjs format
10
-
11
9
..
12
10
Put new features here and also in 'doc/whatsnew/2.13.rst'
13
11
@@ -19,6 +17,17 @@ Release date: TBA
19
17
* When run in parallel mode ``pylint`` now pickles the data passed to subprocesses with
20
18
the ``dill`` package. The ``dill`` package has therefore been added as a dependency.
21
19
20
+ * An astroid issue where symlinks were not being taken into account
21
+ was fixed
22
+
23
+ Closes #1470
24
+ Closes #3499
25
+ Closes #4302
26
+ Closes #4798
27
+ Closes #5081
28
+
29
+ * Pyreverse - add output in mermaidjs format
30
+
22
31
* ``used-before-assignment`` now considers that assignments in a try block
23
32
may not have occurred when the except or finally blocks are executed.
24
33
Original file line number Diff line number Diff line change @@ -48,6 +48,15 @@ Other Changes
48
48
49
49
.. _`emacs file locks` : https://www.gnu.org/software/emacs/manual/html_node/elisp/File-Locks.html
50
50
51
+ * An astroid issue where symlinks were not being taken into account
52
+ was fixed
53
+
54
+ Closes #1470
55
+ Closes #3499
56
+ Closes #4302
57
+ Closes #4798
58
+ Closes #5081
59
+
51
60
* Fixed extremely long processing of long lines with comma's.
52
61
53
62
Closes #5483
Original file line number Diff line number Diff line change
1
+ ../ module / __init__ .py
Original file line number Diff line number Diff line change
1
+ ../ module / symlinked_module .py
Original file line number Diff line number Diff line change
1
+ """Example taken from issue #1470"""
2
+
3
+ from symlinked_module import func
Original file line number Diff line number Diff line change
1
+ """Example taken from issue #1470"""
2
+
3
+
4
+ def func ():
5
+ """Both module should be parsed without problem"""
6
+ return 1
You can’t perform that action at this time.
0 commit comments