Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(8) | Derive(0) | Import(0)
src/p/y/Py2C-HEAD/tests/test_translator.py Py2C(Download)
"from apple import *", python.ImportFrom( "apple", ( python.alias("*", None), ),
"from apple.ball import *", python.ImportFrom( "apple.ball", ( python.alias("*", None), ),
"from apple import ball", python.ImportFrom( "apple", ( python.alias("ball", None), ),
"from apple import ball as cat", python.ImportFrom( "apple", ( python.alias("ball", "cat"), ),
"from apple.ball import (\n cat, \n dog,)", python.ImportFrom( "apple.ball", ( python.alias("cat", None),