Skip to content

Instantly share code, notes, and snippets.

@lprsd
Created November 22, 2009 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lprsd/240473 to your computer and use it in GitHub Desktop.
Save lprsd/240473 to your computer and use it in GitHub Desktop.
# OUT: imported django settings
# OUT: imported django models
import normal_class.py
# OUT: Traceback (most recent call last):
# OUT: File "<input>", line 1, in <module>
# OUT: ImportError: No module named py
import normal_class
normal_class.NormalClass()
# OUT: I am a Normal Class
# OUT: imported django settings
# OUT: imported django models
def NormalClass():
print 'I am a Normal Class'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment