| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -145,12 +145,13 @@ dist: realclean | |||
| 145 | 145 | rm -rf ./$(RELEASE)/ | |
| 146 | 146 | ||
| 147 | 147 | sign: | |
| 148 | - md5sum ./release/$(RELEASE).tar.gz ./release/$(RELEASE).zip > \ | ||
| 149 | - ./release/$(RELEASE).md5 | ||
| 150 | - sha256sum ./release/$(RELEASE).tar.gz ./release/$(RELEASE).zip > \ | ||
| 151 | - ./release/$(RELEASE).sha | ||
| 152 | - gpg -sb ./release/$(RELEASE).zip | ||
| 153 | - gpg -sb ./release/$(RELEASE).tar.gz | ||
| 148 | + rm -f release/$(RELEASE)*.sig | ||
| 149 | + cd release; md5sum $(RELEASE).tar.gz $(RELEASE).zip > \ | ||
| 150 | + $(RELEASE).md5 | ||
| 151 | + cd release; sha256sum $(RELEASE).tar.gz $(RELEASE).zip > \ | ||
| 152 | + $(RELEASE).sha | ||
| 153 | + cd release; gpg -sab $(RELEASE).zip | ||
| 154 | + cd release; gpg -sab $(RELEASE).tar.gz | ||
| 154 | 155 | ||
| 155 | 156 | dis: | |
| 156 | 157 | $(ILDASM) Python.Runtime.dll /out=Python.Runtime.il | |
@@ -170,4 +171,4 @@ install: all | |||
| 170 | 171 | $(PYTHON) setup.py install | |
| 171 | 172 | ||
| 172 | 173 | mkkey: | |
| 173 | - $(SN) /k $(KEYFILE) | ||
| 174 | + $(SN) -k $(KEYFILE) | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,21 @@ | |||
| 1 | + <!-- Mono DLL map for Python.Runtime.dll | ||
| 2 | + | ||
| 3 | + Keep this file next to Python.Runtime.dll | ||
| 4 | + | ||
| 5 | + For more information read: | ||
| 6 | + http://www.mono-project.com/Config | ||
| 7 | + http://www.mono-project.com/Config_DllMap | ||
| 8 | + | ||
| 9 | + --> | ||
| 10 | + | ||
| 11 | + <configuration> | ||
| 12 | + <dllmap dll="python23" target="libpython2.3.so" os="!windows" /> | ||
| 13 | + <dllmap dll="python24" target="libpython2.4.so" os="!windows" /> | ||
| 14 | + <dllmap dll="python25" target="libpython2.5.so" os="!windows" /> | ||
| 15 | + <dllmap dll="python26" target="libpython2.6.so" os="!windows" /> | ||
| 16 | + <dllmap dll="python23.dll" target="libpython2.3.so" os="!windows" /> | ||
| 17 | + <dllmap dll="python24.dll" target="libpython2.4.so" os="!windows" /> | ||
| 18 | + <dllmap dll="python25.dll" target="libpython2.5.so" os="!windows" /> | ||
| 19 | + <dllmap dll="python26.dll" target="libpython2.6.so" os="!windows" /> | ||
| 20 | + </configuration> | ||
| 21 | + | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -56,6 +56,13 @@ Python for .NET Changes | |||
| 56 | 56 | - Added code for Python 2.3. PythonNet can be build for Python 2.3 again | |
| 57 | 57 | but it is not fully supported. [tiran] | |
| 58 | 58 | ||
| 59 | + - Changed the PythonException.Message value so it displays the name of | ||
| 60 | + the exception class ("Exception") instead of its representation | ||
| 61 | + ("<type 'exceptions.Exception'>"). | ||
| 62 | + | ||
| 63 | + - Added Python.Runtime.dll.config | ||
| 64 | + | ||
| 65 | + | ||
| 59 | 66 | PythonNet 2.0 alpha 1 | |
| 60 | 67 | --------------------------------------------------------------------------- | |
| 61 | 68 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,15 +21,16 @@ | |||
| 21 | 21 | } | |
| 22 | 22 | .assembly extern Python.Runtime | |
| 23 | 23 | { | |
| 24 | - .ver 1:0:0:0 | ||
| 24 | + // .publickeytoken = (64 e1 4e 84 5a bf 2e 60) | ||
| 25 | + .ver 2:0:0:2 | ||
| 25 | 26 | } | |
| 26 | 27 | .assembly clr | |
| 27 | 28 | { | |
| 28 | 29 | // --- The following custom attribute is added automatically, do not uncomment ------- | |
| 29 | 30 | // .custom instance void [mscorlib]System.Diagnostics.DebuggableAttribute::.ctor(bool, | |
| 30 | 31 | // bool) = ( 01 00 00 01 00 00 ) | |
| 31 | 32 | .hash algorithm 0x00008004 | |
| 32 | - .ver 0:0:0:0 | ||
| 33 | + .ver 2:0:0:2 | ||
| 33 | 34 | } | |
| 34 | 35 | ||
| 35 | 36 | .module clr.dll | |
| Back | FazBrowse Home | New Git URL |
0 commit comments