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

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

                Author: ASF GitHub Bot
            Created on: 14/Jun/18 22:46
            Start Date: 14/Jun/18 22:46
    Worklog Time Spent: 10m 
      Work Description: aaltay closed pull request #5531: [BEAM-1251] print() 
is a function in Python 3
URL: https://github.com/apache/beam/pull/5531
 
 
   

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/verify_performance_test_results_test.py 
b/.test-infra/jenkins/verify_performance_test_results_test.py
index 22f6f3b52fe..f8d7d803962 100644
--- a/.test-infra/jenkins/verify_performance_test_results_test.py
+++ b/.test-infra/jenkins/verify_performance_test_results_test.py
@@ -19,6 +19,8 @@
 #   This script performs testing of scenarios from 
verify_performance_test_results.py
 #
 
+from __future__ import print_function
+
 import unittest, mock
 from mock import patch
 from verify_performance_test_results import create_report
@@ -27,7 +29,7 @@ class VerifyAnalysisScript(unittest.TestCase):
     """Tests for `verify_performance_test_results.py`."""
 
     def setUp(self):
-        print "Test name:", self._testMethodName
+        print("Test name:", self._testMethodName)
 
     @patch('verify_performance_test_results.count_queries', return_value=0)
     def test_create_daily_report_when_no_data_was_uploaded(self, *args):
@@ -86,4 +88,4 @@ def 
test_create_daily_report_when_average_time_does_not_change(self, *args):
     #TODO: Add more testing scenarios, when single performance tests will be 
finished.
 
 if __name__ == '__main__':
-    unittest.main()
\ No newline at end of file
+    unittest.main()


 

----------------------------------------------------------------
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: 112092)
    Time Spent: 9h 20m  (was: 9h 10m)

> 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
>            Priority: Trivial
>          Time Spent: 9h 20m
>  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