[ 
https://issues.apache.org/jira/browse/BEAM-1251?focusedWorklogId=120565&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-120565
 ]

ASF GitHub Bot logged work on BEAM-1251:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 09/Jul/18 05:05
            Start Date: 09/Jul/18 05:05
    Worklog Time Spent: 10m 
      Work Description: cclauss closed pull request #5890: [BEAM-1251] print() 
is a function in Python 3
URL: https://github.com/apache/beam/pull/5890
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.test-infra/jenkins/dependency_check/bigquery_client_utils.py 
b/.test-infra/jenkins/dependency_check/bigquery_client_utils.py
index 08571b7dce3..823ae89ea4e 100644
--- a/.test-infra/jenkins/dependency_check/bigquery_client_utils.py
+++ b/.test-infra/jenkins/dependency_check/bigquery_client_utils.py
@@ -15,6 +15,8 @@
 # limitations under the License.
 #
 
+from __future__ import print_function
+
 import datetime
 import logging
 from google.cloud import bigquery
@@ -101,7 +103,7 @@ def insert_dep_to_table(self, dep, version, release_date, 
is_currently_used=Fals
     try:
       query_job = self.bigquery_client.query(query)
       if not query_job.done():
-        print query_job.result()
+        print(query_job.result())
     except:
       raise
 
@@ -123,7 +125,7 @@ def delete_dep_from_table(self, dep, version):
     try:
       query_job = self.bigquery_client.query(query)
       if not query_job.done():
-        print query_job.result()
+        print(query_job.result())
     except:
       raise
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 120565)
    Time Spent: 13h 50m  (was: 13h 40m)

> Python 3 Support
> ----------------
>
>                 Key: BEAM-1251
>                 URL: https://issues.apache.org/jira/browse/BEAM-1251
>             Project: Beam
>          Issue Type: Improvement
>          Components: sdk-py-core
>            Reporter: Eyad Sibai
>            Assignee: Robbe
>            Priority: Trivial
>          Time Spent: 13h 50m
>  Remaining Estimate: 0h
>
> I have been trying to use google datalab with python3. As I see there are 
> several packages that does not support python3 yet which google datalab 
> depends on. This is one of them.
> https://github.com/GoogleCloudPlatform/DataflowPythonSDK/issues/6



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to