diff options
Diffstat (limited to 'Lib/asyncio/unix_events.py')
| -rw-r--r-- | Lib/asyncio/unix_events.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index d712749..ce49c4f 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -381,7 +381,8 @@ class _UnixReadPipeTransport(transports.ReadTransport):      if compat.PY34:          def __del__(self):              if self._pipe is not None: -                warnings.warn("unclosed transport %r" % self, ResourceWarning) +                warnings.warn("unclosed transport %r" % self, ResourceWarning, +                              source=self)                  self._pipe.close()      def _fatal_error(self, exc, message='Fatal error on pipe transport'): @@ -573,7 +574,8 @@ class _UnixWritePipeTransport(transports._FlowControlMixin,      if compat.PY34:          def __del__(self):              if self._pipe is not None: -                warnings.warn("unclosed transport %r" % self, ResourceWarning) +                warnings.warn("unclosed transport %r" % self, ResourceWarning, +                              source=self)                  self._pipe.close()      def abort(self): | 
