mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Fix two errors that prevented "make libinstall" from working:
- a line indented with tabs; - a function named 'as'.
This commit is contained in:
parent
07519f8712
commit
69e8084ad6
2 changed files with 3 additions and 3 deletions
|
|
@ -45,7 +45,7 @@ class WindowList:
|
|||
try:
|
||||
callback()
|
||||
except:
|
||||
t, v, tb = sys.exc_info()
|
||||
t, v, tb = sys.exc_info()
|
||||
print "warning: callback failed in WindowList", t, ":", v
|
||||
|
||||
registry = WindowList()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue