summaryrefslogtreecommitdiff
path: root/pylint/test/regrtest_data
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-07 15:40:25 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-07 15:40:25 +0200
commit403df92d1710267ae5b7fe215acd9357a8cbf251 (patch)
treecc7337fb8a9f088550531dc3bb1204e643982ffc /pylint/test/regrtest_data
parent1fc333e90d0328f878c8a58084eb2cba536d0b4b (diff)
parent9e0620833d014a0c8d34b6bf8c908e01b3ac7e70 (diff)
downloadpylint-403df92d1710267ae5b7fe215acd9357a8cbf251.tar.gz
Merged in jakirkham/pylint/issue_538_pt2 (pull request #315)
Add another check of the current working directory for `.pylintrc`.
Diffstat (limited to 'pylint/test/regrtest_data')
-rw-r--r--pylint/test/regrtest_data/beyond_top/__init__.py6
-rw-r--r--pylint/test/regrtest_data/beyond_top/data.py1
2 files changed, 7 insertions, 0 deletions
diff --git a/pylint/test/regrtest_data/beyond_top/__init__.py b/pylint/test/regrtest_data/beyond_top/__init__.py
new file mode 100644
index 0000000..401fe06
--- /dev/null
+++ b/pylint/test/regrtest_data/beyond_top/__init__.py
@@ -0,0 +1,6 @@
+from ... import Something
+from . import data
+try:
+ from ... import Lala
+except ImportError:
+ pass \ No newline at end of file
diff --git a/pylint/test/regrtest_data/beyond_top/data.py b/pylint/test/regrtest_data/beyond_top/data.py
new file mode 100644
index 0000000..9ec64d2
--- /dev/null
+++ b/pylint/test/regrtest_data/beyond_top/data.py
@@ -0,0 +1 @@
+Anything = 42 \ No newline at end of file