Best Python code snippet using avocado_python
safeloader.py
Source:safeloader.py  
...116        name = statement_import_as(statement).get(self.klass, None)117        if name is not None:118            self.klass_imports.add(name)119    @staticmethod120    def _all_module_level_names(full_module_name):121        result = []122        components = full_module_name.split(".")[:-1]123        for topmost in range(len(components)):124            result.append(".".join(components[-topmost:]))125            components.pop()126        return result127    def _handle_import(self, statement):128        self.add_imported_object(statement)129        imported_as = statement_import_as(statement)130        name = imported_as.get(self.module, None)131        if name is not None:132            self.mod_imports.add(name)133        for as_name in imported_as.values():134            for mod_name in self._all_module_level_names(as_name):135                if mod_name == self.module:136                    self.mod_imports.add(mod_name)137    def iter_classes(self):138        """139        Iterate through classes and keep track of imported avocado statements140        """141        for statement in self.mod.body:142            # Looking for a 'from <module> import <klass>'143            if isinstance(statement, ast.ImportFrom):144                self._handle_import_from(statement)145            # Looking for a 'import <module>'146            elif isinstance(statement, ast.Import):147                self._handle_import(statement)148            # Looking for a 'class Anything(anything):'...module.py
Source:module.py  
...112        name = get_statement_import_as(statement).get(self.klass, None)113        if name is not None:114            self.klass_imports.add(name)115    @staticmethod116    def _all_module_level_names(full_module_name):117        result = []118        components = full_module_name.split(".")[:-1]119        for topmost in range(len(components)):120            result.append(".".join(components[-topmost:]))121            components.pop()122        return result123    def _handle_import(self, statement):124        self.add_imported_symbol(statement)125        imported_as = get_statement_import_as(statement)126        name = imported_as.get(self.module, None)127        if name is not None:128            self.mod_imports.add(name)129        for as_name in imported_as.values():130            for mod_name in self._all_module_level_names(as_name):131                if mod_name == self.module:132                    self.mod_imports.add(mod_name)133    def iter_classes(self, interesting_klass=None):134        """135        Iterate through classes and keep track of imported avocado statements136        """137        for statement in self.mod.body:138            # Looking for a 'from <module> import <klass>'139            if isinstance(statement, ast.ImportFrom):140                self._handle_import_from(statement, interesting_klass)141            # Looking for a 'import <module>'142            elif isinstance(statement, ast.Import):143                self._handle_import(statement)144            # Looking for a 'class Anything(anything):'...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
