次のコードを選択してeclipseで "Run selected code"をクリックするとエラーになります。Python '予期せぬEOFの解析中' eclipse pydev選択されたコードの実行
class abc(object):
def __init__(self):
print 'base'
def run(self):
print 'run'
エラーメッセージ:私は2つの機能の間のスペースを削除する場合
class abc(object):
def __init__(self):
print 'base'
def run(self):
print 'run'
File "<ipython-input-22-8e1ec627fd90>", line 1
def run(self):
^
SyntaxError: unexpected EOF while parsing
run
しかし、それは[OK]を実行します(下記参照)、これは、PyDevはバグでしょうか?どのように私はこの問題に来ることができますか?
class abc(object):
def __init__(self):
print 'base'
def run(self):
print 'run'
バージョン:
のEclipse 4.4.2
LiClipse 2.0.0.201504092214
Subclipseの(必須)1.10.13
ありがとうございます。私は答えを感謝します。 – user97662