Kaydet (Commit) 96b64d06 authored tarafından Just van Rossum's avatar Just van Rossum

open res file(s) read only; upped __version__ -- jvr

üst 43b34da6
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# keep this (__main__) as clean as possible, since we are using # keep this (__main__) as clean as possible, since we are using
# it like the "normal" interpreter. # it like the "normal" interpreter.
__version__ = '1.0b2' __version__ = '1.0b3'
def init(): def init():
...@@ -18,15 +18,15 @@ def init(): ...@@ -18,15 +18,15 @@ def init():
Res.GetResource('DITL', 468) Res.GetResource('DITL', 468)
except Res.Error: except Res.Error:
# we're not an applet # we're not an applet
Res.OpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:PythonIDE.rsrc")) Res.FSpOpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:PythonIDE.rsrc"), 1)
Res.OpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc")) Res.FSpOpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc"), 1)
ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE") ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE")
else: else:
# we're an applet # we're an applet
try: try:
Res.GetResource('CURS', 468) Res.GetResource('CURS', 468)
except Res.Error: except Res.Error:
Res.OpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc")) Res.FSpOpenResFile(os.path.join(sys.exec_prefix, ":Mac:Tools:IDE:Widgets.rsrc"), 1)
ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE") ide_path = os.path.join(sys.exec_prefix, ":Mac:Tools:IDE")
else: else:
# we're a full blown applet # we're a full blown applet
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment