
# b.py
def spam(text):
    print text, 'spam'



# a.py
import b
b.spam('gumby')


