summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2023-04-29 14:32:50 -0400
committerGitHub <noreply@github.com>2023-04-29 20:32:50 +0200
commit1cbc3d818b2b279747ef8d4222262fea4b21cccb (patch)
tree44d31a92a68c3933b87f888192371961d0d5e836 /doc
parent87a4d672a8661aa61d5717fd902315d9563e33b6 (diff)
downloadpylint-git-1cbc3d818b2b279747ef8d4222262fea4b21cccb.tar.gz
Fix false negative for calling module-level function before definition (#8494)
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/1144.false_negative3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/1144.false_negative b/doc/whatsnew/fragments/1144.false_negative
new file mode 100644
index 000000000..9b30c197b
--- /dev/null
+++ b/doc/whatsnew/fragments/1144.false_negative
@@ -0,0 +1,3 @@
+Emit ``used-before-assignment`` when calling module-level functions before definition.
+
+Closes #1144