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/27 18:13:03 UTC

[beam] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new c44f352  Match Python 3 warning message in __init__.py with the one in setup.py.
     new 063091e  Merge pull request #8956 from tvalentyn/classifiers
c44f352 is described below

commit c44f3525bbbb2d7c1f07a143564be4ea8717adb9
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: