File tree 3 files changed +3
-8
lines changed
3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
37
37
- Upgraded NUnit framework from ` 2.6.4 ` to ` 3.6.0 ` (#371 )
38
38
- Unfroze Mono version on Travis (#345 )
39
39
- Changed ` conda.recipe ` build to only pull-requests (#345 )
40
+ - Combine ` Py_DEBUG ` and ` PYTHON_WITH_PYDEBUG ` flags (#362 )
40
41
41
42
### Deprecated
42
43
@@ -63,6 +64,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
63
64
- Removed ` six ` dependency for ` unittests ` (#329 )
64
65
- Removed ` Mono.Unix ` dependency for ` UCS4 ` (#360 )
65
66
- Removed need for ` Python.Runtime.dll.config `
67
+ - Removed PY32 build option ` PYTHON_WITH_WIDE_UNICODE ` (#417 )
66
68
67
69
## [ 2.2.2] [ ] - 2017-01-29
68
70
Original file line number Diff line number Diff line change @@ -182,8 +182,6 @@ def build_extension(self, ext):
182
182
defines .append ("PYTHON_WITH_PYDEBUG" )
183
183
if "m" in sys .abiflags :
184
184
defines .append ("PYTHON_WITH_PYMALLOC" )
185
- if "u" in sys .abiflags :
186
- defines .append ("PYTHON_WITH_WIDE_UNICODE" )
187
185
188
186
# check the interop file exists, and create it if it doesn't
189
187
interop_file = _get_interop_filename ()
Original file line number Diff line number Diff line change @@ -138,16 +138,11 @@ public class Runtime
138
138
#else
139
139
internal const string dllWithPyMalloc = "" ;
140
140
#endif
141
- #if PYTHON_WITH_WIDE_UNICODE
142
- internal const string dllWithWideUnicode = "u" ;
143
- #else
144
- internal const string dllWithWideUnicode = "" ;
145
- #endif
146
141
147
142
#if PYTHON_WITHOUT_ENABLE_SHARED
148
143
public const string PythonDll = "__Internal" ;
149
144
#else
150
- public const string PythonDll = dllBase + dllWithPyDebug + dllWithPyMalloc + dllWithWideUnicode ;
145
+ public const string PythonDll = dllBase + dllWithPyDebug + dllWithPyMalloc ;
151
146
#endif
152
147
153
148
public static readonly int pyversionnumber = Convert . ToInt32 ( pyver ) ;
You can’t perform that action at this time.
0 commit comments