OLD | NEW |
(Empty) | |
| 1 URL: http://www.python.org/ |
| 2 Version: 2.7.4 |
| 3 Licenses: PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 |
| 4 Licenses: Microsoft Distributable Code (strictly for msvcr90.dll) |
| 5 License File: LICENSE.txt |
| 6 Description: CPython for Windows. |
| 7 |
| 8 Local Modifications: |
| 9 * From http://python.org/download/, installed /Python 2.7.4 Windows Installer", |
| 10 the 32 bits version. Deselected all options: |
| 11 * Register Extensions, Tcl/Tk, Documentation, Utility Scripts, Test suite. |
| 12 * Used http://dependencywalker.com to figure out the right path for mscvr90.dll. |
| 13 * Renamed DLLs and Libs directory names to lower case. |
| 14 * Ran: |
| 15 cd python_274 |
| 16 copy %WINDIR%\system32\python27.dll |
| 17 copy c:\windows\winsxs\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_
d08d0375\msvcr90.dll |
| 18 copy python.exe python_slave.exe |
| 19 rd /q /s include libs lib\test |
| 20 cd .. |
| 21 svn add python_274 |
| 22 cd python_274 |
| 23 for /r %a in (*.exe;*.dll;*.pyd) do @svn pset svn:executable "." "%a" |
| 24 for /r %a in (*.py) do @svn pset svn:eol-style LF "%a" |
OLD | NEW |