Skip to content

Instantly share code, notes, and snippets.

@msmhrt
Created July 9, 2012 11:42
Show Gist options
  • Select an option

  • Save msmhrt/3076005 to your computer and use it in GitHub Desktop.

Select an option

Save msmhrt/3076005 to your computer and use it in GitHub Desktop.
Pythonでtest.pyを作るな! ref: http://qiita.com/items/7e2a335a4c64bcc6e044
$ echo from test import support >test.py
$ python test.py
Traceback (most recent call last):
File "test.py", line 1, in <module>
from test import support
File "/tmp/tmp.TWTFmPjXqY/test.py", line 1, in <module>
from test import support
ImportError: cannot import name support
$ mv test.py test_.py
$ python test_.py
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment