PEP 565: note an implementation detail

This commit is contained in:
Nick Coghlan 2017-11-25 15:23:27 +10:00
parent ca9c7a845c
commit c7cda067d4
1 changed files with 7 additions and 0 deletions

View File

@ -164,6 +164,13 @@ Reference Implementation
A reference implementation is available in the PR [4_] linked from the
related tracker issue for this PEP [5_].
As a side-effect of implementing this PEP, the internal warnings filter list
will start allowing the use of plain strings as part of filter definitions (in
addition to the existing use of compiled regular expressions). When present,
the plain strings will be compared for exact matches only. This approach allows
the new default filter to be added during interpreter startup without requiring
early access to the ``re`` module.
Motivation
==========