Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(3) | Derive(0) | Import(0)
src/f/t/ftw.subsite-1.3.1/ftw/subsite/tests/builders.py ftw.subsite(Download)
def with_language(self, language_code): if 'title' not in self.arguments: return self.having(forcelanguage=language_code, title=language_code) else: return self.having(forcelanguage=language_code)
src/f/t/ftw.book-2.2.20/ftw/book/tests/builders.py ftw.book(Download)
def with_layout(self, layout_iface): dotted_name = '.'.join((layout_iface.__module__, layout_iface.__name__)) self.having(latex_layout=dotted_name) self.apply_layer = layout_iface