◐ Shell
reader mode source ↗
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].

- Support `del obj[...]` for types derived from `IList<T>` and `IDictionary<K, V>`
- Support for .NET Framework 4.6.1 (#2701)

### Changed
### Fixed
Expand Down
28 changes: 28 additions & 0 deletions doc/source/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,34 @@ Python idioms:
for item in domain.GetAssemblies():
name = item.GetName()

Type Conversion
---------------

Expand Down
16 changes: 16 additions & 0 deletions src/runtime/Mixins/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@

import collections.abc as col

class IteratorMixin(col.Iterator):
def close(self):
if hasattr(self, 'Dispose'):
Expand Down
Loading
Toggle all file notes Toggle all file annotations