我想看看是否可以定义新的关键字,或者在WAT 的 Destroy All Software 演讲中讨论 Ruby 时,用 Python 定义新的关键字。
我想出了一个在其他地方找不到的答案,所以我决定在 StackOverflow 上分享它的问答风格。
我想看看是否可以定义新的关键字,或者在WAT 的 Destroy All Software 演讲中讨论 Ruby 时,用 Python 定义新的关键字。
我想出了一个在其他地方找不到的答案,所以我决定在 StackOverflow 上分享它的问答风格。
到目前为止,我只在 REPL 中尝试过这个,在任何块之外。也有可能让它在其他地方工作。
我把它放在我的python启动文件中:
def bareWordHandler(type_, value, traceback_):
if isinstance(value, SyntaxError):
import traceback
# You can probably modify this next line so that it'll work within blocks, as well as outside them:
bareWords = traceback.format_exception(type_, value, traceback_)[1].split()
# At this point we have the raw string that was entered.
# Use whatever logic you want on it to decide what to do.
if bareWords[0] == 'Awesome':
print(' '.join(bareWords[1:]).upper() + '!')
return
bareWordsHandler.originalExceptHookFunction(type_, value, traceback_)
import sys
bareWordsHandler.originalExceptHookFunction = sys.excepthook
sys.excepthook = bareWordsHandler
快速 REPL 会话演示后记:
>>> Awesome bare words
BARE WORDS!
负责任地使用。
编辑:这是一个更有用的例子。我添加了一个run
关键字。
if bareWords[0] == 'from' and bareWords[2] == 'run':
atPrompt.autoRun = ['from ' + bareWords[1] + ' import ' + bareWords[3].split('(')[0],
' '.join(bareWords[3:])]
return
atPrompt.autoRun
是一个变量列表,当我的提示显示时,将自动检查并反馈。因此,例如,我可以这样做:
>>> from loadBalanceTester run loadBalancerTest(runJar = False)
这被解释为:
from loadBalancerTest import loadBalancerTest
loadBalancerTest(runJar = False)
它有点像一个宏——我想做这种事情很常见,所以我决定添加一个关键字,让我用更少的按键来完成它。