Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0d634 commit 94af550Copy full SHA for 94af550
src/runtime/runtime.cs
@@ -139,9 +139,6 @@ public class Runtime
139
#if PYTHON27
140
internal const string _pyversion = "2.7";
141
internal const string _pyver = "27";
142
-#elif PYTHON33
143
- internal const string _pyversion = "3.3";
144
- internal const string _pyver = "33";
145
#elif PYTHON34
146
internal const string _pyversion = "3.4";
147
internal const string _pyver = "34";
@@ -155,7 +152,7 @@ public class Runtime
155
152
internal const string _pyversion = "3.7";
156
153
internal const string _pyver = "37";
157
154
#else
158
-#error You must define one of PYTHON33 to PYTHON37 or PYTHON27
+#error You must define one of PYTHON34 to PYTHON37 or PYTHON27
159
#endif
160
161
#if MONO_LINUX || MONO_OSX // Linux/macOS use dotted version string
0 commit comments