AquaEmacs を実行して、Python でバッファ (Cc Cc) を実行したい。
バッファは次で始まります。
from __future__ import print_function
AquaEmacs での実行は次のように始まります。
import sys,imp
if'test_one_liners' in sys.modules:
imp.reload(test_one_liners)
else:
import test_one_liners
test_one_liners.py は私のファイルです。これにより、次のエラーが発生します。
SyntaxError: from __future__ imports must occur at the beginning of the file
これをどこでどのように修正するか知っている人はいますか?
明確にするために、もう一度情報を追加させてください。
このバッファを作成します。
from __future__ import print_function
print("Hello")
File/Change Buffer Mode/Python を使用して Python にし、Cc Cc を使用して実行します。保存する必要はありません。バッファはいくつかの一時ファイルに書き込まれ、 で失敗しSyntaxError: from __future__ imports must occur at the beginning of the file
ます。トレースバックには、一時ファイルへの参照を含む生成されたファイルが含まれます。Hello を出力する代わりに、どうすればよいでしょうか。