Skip to content

Instantly share code, notes, and snippets.

@codekoala
Created January 7, 2013 16:02
Show Gist options
  • Save codekoala/4476075 to your computer and use it in GitHub Desktop.
Save codekoala/4476075 to your computer and use it in GitHub Desktop.
% mkdir -p demodir/derp
% cat > demodir/derp/testing.py <<EOT
heredoc> print 'this is a test'
heredoc> EOT
% cat > demo.py <<EOT
heredoc> from demodir.derp import testing
heredoc> EOT
% python2 demo.py
Traceback (most recent call last):
File "demo.py", line 1, in <module>
from demodir.derp import testing
ImportError: No module named demodir.derp
% python3 demo.py
Traceback (most recent call last):
File "demo.py", line 1, in <module>
from demodir.derp import testing
File "/home/wheaties/dev/init-test/demodir/derp/testing.py", line 1
print 'this is a test'
^
SyntaxError: invalid syntax
% cat > demodir/derp/testing.py <<EOT
print('this is a test')
EOT
% python3 demo.py
this is a test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment