Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Fixed a refcount leak when iterating over the result of the
built-in ``map`` function. It was possible if input ``iterables``
have different lengths and ``strict`` is ``True``.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe 'and strict mode is on'?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or strict=True.

Or maybe rewrite the entry as:

Fixed a reference leak when iterating over the result of :func:`map` with ``strict=True`` when the input iterables have different lengths.

@JelleZijlstra?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good too!

Patch by Mikhail Efimov.
Loading