You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Allowed passing `None` for nullable args ([#460][p460])
18
20
- Added keyword arguments based on C# syntax for calling CPython methods ([#461][p461])
@@ -24,11 +26,17 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
24
26
25
27
### Changed
26
28
29
+
- Reattach python exception traceback information (#545)
30
+
- PythonEngine.Intialize will now call `Py_InitializeEx` with a default value of 0, so signals will not be configured by default on embedding. This is different from the previous behaviour, where `Py_Initialize` was called instead, which sets initSigs to 1. ([#449][i449])
31
+
27
32
### Fixed
28
33
34
+
- Fixed secondary PythonEngine.Initialize call, all sensitive static variables now reseted.
35
+
This is a hidden bug. Once python cleaning up enough memory, objects from previous engine run becomes corrupted. ([#534][p534])
29
36
- Fixed Visual Studio 2017 compat ([#434][i434]) for setup.py
30
37
- Fixed crashes when integrating pythonnet in Unity3d ([#714][i714]),
31
38
related to unloading the Application Domain
39
+
- Fixed interop methods with Py_ssize_t. NetCoreApp 2.0 is more sensitive than net40 and requires this fix. ([#531][p531])
32
40
- Fixed crash on exit of the Python interpreter if a python class
33
41
derived from a .NET class has a `__namespace__` or `__assembly__`
34
42
attribute ([#481][i481])
@@ -40,6 +48,8 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
40
48
- Fixed errors breaking .NET Remoting on method invoke ([#276][i276])
41
49
- Fixed PyObject.GetHashCode ([#676][i676])
42
50
- Fix memory leaks due to spurious handle incrementation ([#691][i691])
51
+
- Fix spurious assembly loading exceptions from private types ([#703][i703])
52
+
- Fix inheritance of non-abstract base methods ([#755][i755])
43
53
44
54
45
55
## [2.3.0][] - 2017-03-11
@@ -597,6 +607,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
0 commit comments