Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
37e92842
Commit
37e92842
authored
Jul 04, 2003
by
Jack Jansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed lots of minor issues found by Edward Moy: incorrect version
strings, non-standard naming of things in bundles, etc.
parent
dfac99f6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
22 deletions
+26
-22
Mac/OSX/Makefile
Mac/OSX/Makefile
+1
-1
Mac/OSX/PythonLauncher/PythonLauncher.pbproj/project.pbxproj
Mac/OSX/PythonLauncher/PythonLauncher.pbproj/project.pbxproj
+6
-4
Mac/OSXResources/app/Info.plist
Mac/OSXResources/app/Info.plist
+6
-4
Mac/OSXResources/app/Resources/English.lproj/InfoPlist.strings
...SXResources/app/Resources/English.lproj/InfoPlist.strings
+4
-4
Mac/OSXResources/framework/English.lproj/InfoPlist.strings
Mac/OSXResources/framework/English.lproj/InfoPlist.strings
+2
-2
Mac/OSXResources/framework/version.plist
Mac/OSXResources/framework/version.plist
+3
-3
Mac/Tools/IDE/PythonIDE.plist
Mac/Tools/IDE/PythonIDE.plist
+4
-4
No files found.
Mac/OSX/Makefile
View file @
37e92842
...
...
@@ -106,7 +106,7 @@ install_Python:
esac
;
\
done
;
\
done
$(INSTALL_PROGRAM)
$(STRIPFLAG)
$(BUILDPYTHON)
$(DESTDIR)$(APPINSTALLDIR)
/Contents/MacOS/
p
ython
$(INSTALL_PROGRAM)
$(STRIPFLAG)
$(BUILDPYTHON)
$(DESTDIR)$(APPINSTALLDIR)
/Contents/MacOS/
P
ython
install_IDE
:
@
if
!
$(BUILDPYTHON)
-c
"import waste"
;
then
\
...
...
Mac/OSX/PythonLauncher/PythonLauncher.pbproj/project.pbxproj
View file @
37e92842
...
...
@@ -132,7 +132,6 @@
4A9504D0FFE6A4CB11CA0CBA
,
4A9504D1FFE6A4CB11CA0CBA
,
);
hasScannedForEncodings
=
1
;
isa
=
PBXProject
;
mainGroup
=
2A37F4AAFDCFA73011CA2CEA
;
projectDirPath
=
""
;
...
...
@@ -364,7 +363,7 @@
<key>CFBundleExecutable</key>
<string>PythonLauncher</string>
<key>CFBundleGetInfoString</key>
<string>
Python Launcher
</string>
<string>
2.3, © 2001-2003 Python Software Foundation
</string>
<key>CFBundleIconFile</key>
<string>PythonInterpreter.icns</string>
<key>CFBundleIdentifier</key>
...
...
@@ -372,13 +371,15 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Python
Launcher</string>
<string>PythonLauncher</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.3</string>
<key>CFBundleSignature</key>
<string>PytL</string>
<key>CFBundleVersion</key>
<string>2.3
a0
</string>
<string>2.3</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
...
...
@@ -386,6 +387,7 @@
</dict>
</plist>
"
;
shouldUseHeadermap
=
0
;
};
2A37F4C7FDCFA73011CA2CEA
=
{
buildActionMask
=
2147483647
;
...
...
Mac/OSXResources/app/Info.plist
View file @
37e92842
...
...
@@ -18,14 +18,14 @@
</dict>
</array>
<key>
CFBundleExecutable
</key>
<string>
p
ython
</string>
<string>
P
ython
</string>
<key>
CFBundleGetInfoString
</key>
<string>
Python Interpreter version 2.3, (c) 2002
Python Software Foundation.
</string>
<string>
2.3, (c) 2003
Python Software Foundation.
</string>
<key>
CFBundleLongVersionString
</key>
<string>
2.3, (c) 200
2
Python Software Foundation.
</string>
<string>
2.3, (c) 200
3
Python Software Foundation.
</string>
<key>
NSHumanReadableCopyright
</key>
<string>
Copyright 200
2
Python Software Foundation.
</string>
<string>
Copyright 200
3
Python Software Foundation.
</string>
<key>
CFBundleShortVersionString
</key>
<string>
2.3
</string>
...
...
@@ -57,5 +57,7 @@
<true/>
<key>
CSResourcesFileMapped
</key>
<true/>
<key>
NSAppleScriptEnabled
</key>
<true/>
</dict>
</plist>
Mac/OSXResources/app/Resources/English.lproj/InfoPlist.strings
View file @
37e92842
/* Localized versions of Info.plist keys */
CFBundleName = "Python";
CFBundleShortVersionString = "
Python Interpreter version
2.3";
CFBundleGetInfoString = "
Python Interpreter version 2.3, (c) 2002
Python Software Foundation.";
CFBundleLongVersionString = "2.3, (c) 200
2
Python Software Foundation.";
NSHumanReadableCopyright = "Copyright 200
2
Python Software Foundation.";
CFBundleShortVersionString = "2.3";
CFBundleGetInfoString = "
2.3, (c) 2003
Python Software Foundation.";
CFBundleLongVersionString = "2.3, (c) 200
3
Python Software Foundation.";
NSHumanReadableCopyright = "Copyright 200
3
Python Software Foundation.";
Mac/OSXResources/framework/English.lproj/InfoPlist.strings
View file @
37e92842
/* Localized versions of Info.plist keys */
CFBundleName = "Python";
CFBundleShortVersionString = "2.
2a1
";
CFBundleGetInfoString = "
Python Runtime and Library
";
CFBundleShortVersionString = "2.
3
";
CFBundleGetInfoString = "
2.3, (c) 2003 Python Software Foundation
";
Mac/OSXResources/framework/version.plist
View file @
37e92842
...
...
@@ -5,14 +5,14 @@
<key>
BuildVersion
</key>
<string>
1
</string>
<key>
CFBundleShortVersionString
</key>
<string>
2.
2
</string>
<string>
2.
3
</string>
<key>
CFBundleVersion
</key>
<string>
Python 2.2
</string>
<string>
2.3
</string>
<key>
ProjectName
</key>
<string>
Python
</string>
<key>
ReleaseStatus
</key>
<string>
final
</string>
<key>
SourceVersion
</key>
<string>
2.
2
</string>
<string>
2.
3
</string>
</dict>
</plist>
Mac/Tools/IDE/PythonIDE.plist
View file @
37e92842
...
...
@@ -24,14 +24,14 @@
</dict>
</array>
<key>
CFBundleExecutable
</key>
<string>
python
</string>
<string>
PythonIDE
</string>
<key>
CFBundleGetInfoString
</key>
<string>
Python IDE version 2.3, (c) 2002
Python Software Foundation.
</string>
<string>
2.3, (c) 2003
Python Software Foundation.
</string>
<key>
CFBundleLongVersionString
</key>
<string>
2.3, (c) 200
2
Python Software Foundation.
</string>
<string>
2.3, (c) 200
3
Python Software Foundation.
</string>
<key>
NSHumanReadableCopyright
</key>
<string>
Copyright 200
2
Python Software Foundation.
</string>
<string>
Copyright 200
3
Python Software Foundation.
</string>
<key>
CFBundleShortVersionString
</key>
<string>
2.3
</string>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment