You've already forked AiraPulsar
clean pycache
This commit is contained in:
@@ -11,9 +11,11 @@ def horizontal_indicator():
|
||||
|
||||
@window.observerize
|
||||
def observer(info):
|
||||
print(info)
|
||||
if info["delta"] == "key":
|
||||
print(info)
|
||||
pass
|
||||
|
||||
def marking_lines():
|
||||
print("实例")
|
||||
global window
|
||||
frame = vgl.Frame().attach(window_object=window, poscale=(0,0), clone_name="Marking Line")
|
||||
for i in range(0, 24):
|
||||
@@ -25,7 +27,10 @@ def console():
|
||||
print("You've entered Pulsar's command console, an embbedded Python interpreter for debugging & testing")
|
||||
while True:
|
||||
try:
|
||||
exec(input(prompt=">>> "))
|
||||
i = input(">>> ")
|
||||
if i == "q":
|
||||
return
|
||||
exec(i)
|
||||
except:
|
||||
print("An error caused & captured")
|
||||
|
||||
@@ -35,7 +40,7 @@ if __name__ == '__main__':
|
||||
horizontal_indicator()
|
||||
marking_lines()
|
||||
observer()
|
||||
#console()
|
||||
console()
|
||||
input("任意键以退出")
|
||||
window.kill()
|
||||
exit()
|
||||
Reference in New Issue
Block a user