Package org.sonar.python.semantic
Class BuiltinSymbols
- java.lang.Object
-
- org.sonar.python.semantic.BuiltinSymbols
-
public class BuiltinSymbols extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static Set<String>CONSTANTSSee https://docs.python.org/3/library/constants.html#built-in-constsstatic Set<String>EXCEPTIONSSee https://docs.python.org/3/library/exceptions.htmlstatic Set<String>EXCEPTIONS_PYTHON2See https://docs.python.org/2.7/library/exceptions.htmlstatic Set<String>FUNCTIONSSee https://docs.python.org/3/library/functions.htmlstatic Set<String>FUNCTIONS_PYTHON2See https://docs.python.org/2.7/library/functions.htmlstatic Set<String>MODULE_ATTRIBUTESSee https://docs.python.org/3/reference/import.html?highlight=__package__#import-related-module-attributes
-
-
-
Field Detail
-
CONSTANTS
public static final Set<String> CONSTANTS
See https://docs.python.org/3/library/constants.html#built-in-consts
-
MODULE_ATTRIBUTES
public static final Set<String> MODULE_ATTRIBUTES
See https://docs.python.org/3/reference/import.html?highlight=__package__#import-related-module-attributes
-
FUNCTIONS
public static final Set<String> FUNCTIONS
See https://docs.python.org/3/library/functions.html
-
FUNCTIONS_PYTHON2
public static final Set<String> FUNCTIONS_PYTHON2
See https://docs.python.org/2.7/library/functions.html
-
EXCEPTIONS
public static final Set<String> EXCEPTIONS
See https://docs.python.org/3/library/exceptions.html
-
-