mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
Minor clarficiations in the dialogs about which errno file is wanted when (I had also forgotten:-).
This commit is contained in:
parent
07d69f60bd
commit
c158bb2293
1 changed files with 2 additions and 2 deletions
|
@ -102,13 +102,13 @@ def parse_errors_h(fp, dict):
|
|||
|
||||
def main():
|
||||
dict = {}
|
||||
fss, ok = macfs.PromptGetFile("Where is errno.h?")
|
||||
fss, ok = macfs.PromptGetFile("Where is GUSI sys/errno.h?")
|
||||
if not ok: return
|
||||
fp = open(fss.as_pathname())
|
||||
parse_errno_h(fp, dict)
|
||||
fp.close()
|
||||
|
||||
fss, ok = macfs.PromptGetFile("Select 2nd errno.h or cancel")
|
||||
fss, ok = macfs.PromptGetFile("Select 2nd errno.h (MSL) or cancel")
|
||||
if not ok: return
|
||||
fp = open(fss.as_pathname())
|
||||
parse_errno_h(fp, dict)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue