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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
17
17
- Added PythonException.Format method to format exceptions the same as traceback.format_exception
18
18
- Added Runtime.None to be able to pass None as parameter into Python from .NET
19
19
- Added PyObject.IsNone() to check if a Python object is None in .NET.
20
+
- Support for Python 3.8
20
21
21
22
### Changed
22
23
@@ -29,6 +30,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
29
30
- Added support for kwarg parameters when calling .NET methods from Python
30
31
- Changed method for finding MSBuild using vswhere
31
32
- Reworked `Finalizer`. Now objects drop into its queue upon finalization, which is periodically drained when new objects are created.
33
+
- Marked `Runtime.OperatingSystemName` and `Runtime.MachineName` as `Obsolete`, should never have been `public` in the first place. They also don't necessarily return a result that matches the `platform` module's.
32
34
33
35
### Fixed
34
36
@@ -37,6 +39,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
37
39
- Fixes bug where delegates get casts (dotnetcore)
38
40
- Determine size of interpreter longs at runtime
39
41
- Handling exceptions ocurred in ModuleObject's getattribute
42
+
- Fill `__classcell__` correctly for Python subclasses of .NET types
0 commit comments