summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-04-04 19:05:46 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-04-04 19:06:10 +0200
commite0aafa646a6aaf90603e7d595e9df922c27e3228 (patch)
treee6230dc5f9eac7cd0f72893cdeaa46c1365252c0
parent496b61062e561245c2aeac281ef2b94223ca0656 (diff)
downloadpylint-git-e0aafa646a6aaf90603e7d595e9df922c27e3228.tar.gz
Add missing string functions to the Python 3 porting checker
-rw-r--r--pylint/checkers/python3.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py
index 268de0a97..05bc8b459 100644
--- a/pylint/checkers/python3.py
+++ b/pylint/checkers/python3.py
@@ -547,7 +547,9 @@ class Python3Checker(checkers.BaseChecker):
'maketrans', 'atof', 'atoi', 'atol', 'capitalize', 'expandtabs', 'find', 'rfind',
'index', 'rindex', 'count', 'lower', 'split', 'rsplit', 'splitfields', 'join',
'joinfields', 'lstrip', 'rstrip', 'strip', 'swapcase', 'translate', 'upper',
- 'ljust', 'rjust', 'center', 'zfill', 'replace'
+ 'ljust', 'rjust', 'center', 'zfill', 'replace',
+ 'lowercase', 'letters', 'uppercase', 'atol_error',
+ 'atof_error', 'atoi_error', 'index_error'
])
}
}