Best Python code snippet using avocado_python
_xorg.py
Source:_xorg.py  
...287        """Paints the icon image.288        """289        try:290            dim = self._window.get_geometry()291            self._assert_icon_data(dim.width, dim.height)292            self._window.put_pil_image(self._gc, 0, 0, self._icon_data)293        except Xlib.error.BadDrawable:294            # The window has been destroyed; ignore295            pass296    def _assert_icon_data(self, width, height):297        """Asserts that the cached icon data matches the requested dimensions.298        If no cached icon data exists, or its dimensions do not match the299        requested size, the image is generated.300        :param int width: The requested width.301        :param int height: The requested height.302        """303        if self._icon_data and self._icon_data.size == (width, height):304            return305        self._icon_data = PIL.Image.new(306            'RGB',307            (width, height))308        self._icon_data.paste(self._icon.resize(309            (width, height),310            PIL.Image.ANTIALIAS))...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!!
