From 6f055e73df0846dcfed12704db9d17098f03d652 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 2 Jan 2014 18:41:34 +0100 Subject: [PATCH] asyncio: make PY34 symbol private (rename it to _PY34) --- Lib/asyncio/transports.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py index 2d2469eec29..67ae7fda903 100644 --- a/Lib/asyncio/transports.py +++ b/Lib/asyncio/transports.py @@ -2,7 +2,7 @@ import sys -PY34 = sys.version_info >= (3, 4) +_PY34 = sys.version_info >= (3, 4) __all__ = ['BaseTransport', 'ReadTransport', 'WriteTransport', 'Transport', 'DatagramTransport', 'SubprocessTransport', @@ -94,7 +94,7 @@ class WriteTransport(BaseTransport): The default implementation concatenates the arguments and calls write() on the result. """ - if not PY34: + if not _PY34: # In Python 3.3, bytes.join() doesn't handle memoryview. list_of_data = ( bytes(data) if isinstance(data, memoryview) else data