Skip to content

Commit 5ae34ba

Browse files
committed
Add CHANGELOG entry
1 parent 1819ba9 commit 5ae34ba

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

CHANGELOG.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,23 @@ or the DLL must be loaded in advance. This must be done before calling any other
3939

4040
### Fixed
4141

42-
- Fix incorrect dereference of wrapper object in `tp_repr`, which may result in a program crash
43-
- Fix incorrect dereference in params array handling
44-
- Fixes issue with function resolution when calling overloaded function with keyword arguments from python ([#1097][i1097])
45-
- Fix `object[]` parameters taking precedence when should not in overload resolution
46-
- Fixed a bug where all .NET class instances were considered Iterable
47-
- Fix incorrect choice of method to invoke when using keyword arguments.
48-
- Fix non-delegate types incorrectly appearing as callable.
49-
- Indexers can now be used with interface objects
50-
- Fixed a bug where indexers could not be used if they were inherited
51-
- Made it possible to use `__len__` also on `ICollection<>` interface objects
52-
- Fixed issue when calling PythonException.Format where another exception would be raise for unnormalized exceptions
53-
- Made it possible to call `ToString`, `GetHashCode`, and `GetType` on inteface objects
54-
- Fixed objects returned by enumerating `PyObject` being disposed too soon
55-
- Incorrectly using a non-generic type with type parameters now produces a helpful Python error instead of throwing NullReferenceException ([#1325][i1325])
56-
- `import` may now raise errors with more detail than "No module named X"
57-
- Providing an invalid type parameter to a generic type or method produces a helpful Python error
42+
- Fix incorrect dereference of wrapper object in `tp_repr`, which may result in a program crash
43+
- Fix incorrect dereference in params array handling
44+
- Fixes issue with function resolution when calling overloaded function with keyword arguments from python ([#1097][i1097])
45+
- Fix `object[]` parameters taking precedence when should not in overload resolution
46+
- Fixed a bug where all .NET class instances were considered Iterable
47+
- Fix incorrect choice of method to invoke when using keyword arguments.
48+
- Fix non-delegate types incorrectly appearing as callable.
49+
- Indexers can now be used with interface objects
50+
- Fixed a bug where indexers could not be used if they were inherited
51+
- Made it possible to use `__len__` also on `ICollection<>` interface objects
52+
- Fixed issue when calling PythonException.Format where another exception would be raise for unnormalized exceptions
53+
- Made it possible to call `ToString`, `GetHashCode`, and `GetType` on inteface objects
54+
- Fixed objects returned by enumerating `PyObject` being disposed too soon
55+
- Incorrectly using a non-generic type with type parameters now produces a helpful Python error instead of throwing NullReferenceException
56+
- `import` may now raise errors with more detail than "No module named X"
57+
- Exception stacktraces on `PythonException.StackTrace` are now properly formatted
58+
- Providing an invalid type parameter to a generic type or method produces a helpful Python error
5859

5960
### Removed
6061

0 commit comments

Comments
 (0)