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
- Added `ToPythonAs<T>()` extension method to allow for explicit conversion using a specific type. ([#2311][i2311])
13
-
14
-
- Added `IComparable` and `IEquatable` implementations to `PyInt`, `PyFloat`, and `PyString`
15
-
to compare with primitive .NET types like `long`.
12
+
- Added `ToPythonAs<T>()` extension method to allow for explicit conversion
13
+
using a specific type. ([#2311][i2311])
14
+
- Added `IComparable` and `IEquatable` implementations to `PyInt`, `PyFloat`,
15
+
and `PyString` to compare with primitive .NET types like `long`.
16
16
17
17
### Changed
18
-
- Added a `FormatterFactory` member in RuntimeData to create formatters with parameters. For compatibility, the `FormatterType` member is still present and has precedence when defining both `FormatterFactory` and `FormatterType`
19
-
- Added a post-serialization and a pre-deserialization step callbacks to extend (de)serialization process
18
+
- Added a `FormatterFactory` member in RuntimeData to create formatters with
19
+
parameters. For compatibility, the `FormatterType` member is still present
20
+
and has precedence when defining both `FormatterFactory` and `FormatterType`
21
+
- Added a post-serialization and a pre-deserialization step callbacks to
22
+
extend (de)serialization process
20
23
- Added an API to stash serialized data on Python capsules
21
24
22
25
### Fixed
23
26
24
27
- Fixed RecursionError for reverse operators on C# operable types from python. See #2240
25
28
- Fixed crash when .NET event has no `AddMethod`
26
-
- Fixed probing for assemblies in `sys.path` failing when a path in `sys.path` has invalid characters. See #2376
29
+
- Fixed probing for assemblies in `sys.path` failing when a path in `sys.path`
30
+
has invalid characters. See #2376
27
31
- Fixed possible access violation exception on shutdown. See ([#1977][i1977])
0 commit comments