-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c319016
commit 7c7b85f
Showing
4 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ collections | |
_collections_abc.py | ||
copy.py | ||
copyreg.py | ||
csv.py | ||
encodings | ||
enum.py | ||
functools.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# UTF-8 | ||
# | ||
# Extracted from a executable using pyi-grab_version command | ||
# For more details about fixed file info 'ffi' see: | ||
# http://msdn.microsoft.com/en-us/library/ms646997.aspx | ||
VSVersionInfo( | ||
ffi=FixedFileInfo( | ||
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) | ||
filevers=(0, 3, 0, 0), | ||
prodvers=(0, 3, 0, 0), | ||
# Do not touch these values | ||
mask=0x0, | ||
flags=0x0, | ||
OS=0x0, | ||
fileType=0x0, | ||
subtype=0x0, | ||
date=(0, 0) | ||
), | ||
kids=[ | ||
StringFileInfo( | ||
[ | ||
StringTable( | ||
'040904b0', | ||
[StringStruct('FileDescription', 'ChemCanvas'), | ||
StringStruct('FileVersion', '0.3.0'), | ||
StringStruct('LegalCopyright', 'Arindam Chaudhuri <arindamsoft94@gmail.com>'), | ||
StringStruct('ProductName', 'ChemCanvas'), | ||
StringStruct('ProductVersion', '0.3.0')]), | ||
StringStruct('CompanyName', 'Arindamsoft') | ||
]), | ||
VarFileInfo([VarStruct('Translation', [1033, 1200])]) | ||
] | ||
) |