diff options
Diffstat (limited to 'src/plugins/pythoneditor/pythonscanner.cpp')
-rw-r--r-- | src/plugins/pythoneditor/pythonscanner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pythoneditor/pythonscanner.cpp b/src/plugins/pythoneditor/pythonscanner.cpp index cc75259903..9e80f30e6f 100644 --- a/src/plugins/pythoneditor/pythonscanner.cpp +++ b/src/plugins/pythoneditor/pythonscanner.cpp @@ -202,7 +202,7 @@ FormatToken Scanner::readIdentifier() // List of python built-in functions and objects static const QSet<QString> builtins = { - "range", "xrange", "int", "float", "long", "hex", "oct" "chr", "ord", + "range", "xrange", "int", "float", "long", "hex", "oct", "chr", "ord", "len", "abs", "None", "True", "False" }; |