Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8a3009b

Browse files
authored
Merge pull request #339 from vmuriart/directives
String directives cleanup on Runtime
2 parents c95b8f3 + dde7114 commit 8a3009b

File tree

2 files changed

+64
-160
lines changed

2 files changed

+64
-160
lines changed

src/runtime/assemblyinfo.cs

+7-8
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,19 @@
1515
#if PYTHON27
1616
[assembly: AssemblyTitle("Python.Runtime for Python 2.7")]
1717
[assembly: AssemblyDescription("Python Runtime for Python 2.7")]
18-
#endif
19-
#if PYTHON33
18+
#elif PYTHON33
2019
[assembly: AssemblyTitle("Python.Runtime for Python 3.3")]
2120
[assembly: AssemblyDescription("Python Runtime for Python 3.3")]
22-
#endif
23-
#if PYTHON34
21+
#elif PYTHON34
2422
[assembly: AssemblyTitle("Python.Runtime for Python 3.4")]
2523
[assembly: AssemblyDescription("Python Runtime for Python 3.4")]
26-
#endif
27-
#if PYTHON35
24+
#elif PYTHON35
2825
[assembly: AssemblyTitle("Python.Runtime for Python 3.5")]
2926
[assembly: AssemblyDescription("Python Runtime for Python 3.5")]
30-
#endif
31-
#if PYTHON36
27+
#elif PYTHON36
3228
[assembly: AssemblyTitle("Python.Runtime for Python 3.6")]
3329
[assembly: AssemblyDescription("Python Runtime for Python 3.6")]
30+
#elif PYTHON37
31+
[assembly: AssemblyTitle("Python.Runtime for Python 3.7")]
32+
[assembly: AssemblyDescription("Python Runtime for Python 3.7")]
3433
#endif

0 commit comments

Comments
 (0)