---------------------------------------------------------------------------
| 202 | |
| 203 | //--------------------------------------------------------------------------- |
| 204 | bool ctkPythonConsoleCompleterPrivate::isBuiltInFunction(const QString &pythonFunctionName) |
| 205 | { |
| 206 | return this->PythonManager.pythonAttributes(pythonFunctionName, QLatin1String("__main__.__builtins__")).contains("__call__"); |
| 207 | } |
| 208 | |
| 209 | //--------------------------------------------------------------------------- |
| 210 | int ctkPythonConsoleCompleterPrivate::parameterCountBuiltInFunction(const QString& pythonFunctionName) |
no test coverage detected