summaryrefslogtreecommitdiff
path: root/pylint/test/functional/line_too_long_end_of_module.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/line_too_long_end_of_module.py')
-rw-r--r--pylint/test/functional/line_too_long_end_of_module.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pylint/test/functional/line_too_long_end_of_module.py b/pylint/test/functional/line_too_long_end_of_module.py
new file mode 100644
index 000000000..21cb75655
--- /dev/null
+++ b/pylint/test/functional/line_too_long_end_of_module.py
@@ -0,0 +1,7 @@
+#pylint: disable=missing-docstring, line-too-long
+
+# Hey this is a very long commented line just to trigger pylint's line-too-long message. It is just above a dummy function with a very long code line.
+def dummy_function():
+ print("What a beautiful dummy function with such a very long line inside that it should trigger pylint's line-too-long message ")
+
+# Hey this is a very long commented line at the end of the module. It is just here to trigger pylint's line-too-long message.