You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by an...@apache.org on 2019/06/28 20:36:17 UTC

[beam] branch release-2.14.0 updated: Match Python 3 warning message in __init__.py with the one in setup.py.

This is an automated email from the ASF dual-hosted git repository.

anton pushed a commit to branch release-2.14.0
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/release-2.14.0 by this push:
     new 38672fd  Match Python 3 warning message in __init__.py with the one in setup.py.
     new 09ea2ca  Merge pull request #8958 from tvalentyn/py3_warning_cp
38672fd is described below

commit 38672fdffef6ece2d679bf45be1cc0a63088f93b
Author: Valentyn Tymofieiev <va...@google.com>
AuthorDate: Thu Jun 27 10:23:49 2019 -0700

    Match Python 3 warning message in __init__.py with the one in setup.py.
---
 sdks/python/apache_beam/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdks/python/apache_beam/__init__.py b/sdks/python/apache_beam/__init__.py
index e06cc69..4a0701b 100644
--- a/sdks/python/apache_beam/__init__.py
+++ b/sdks/python/apache_beam/__init__.py
@@ -81,8 +81,8 @@ import warnings
 
 if sys.version_info[0] == 3:
   warnings.warn(
-      'Running the Apache Beam SDK on Python 3 is not yet fully supported. '
-      'You may encounter buggy behavior or missing features.')
+      'Some syntactic constructs of Python 3 are not yet fully supported by '
+      'Apache Beam.')
 elif sys.version_info[0] == 2 and sys.version_info[1] == 7:
   pass
 else: