* [dpdk-dev] [PATCH] usertools: fix py3 syntax errors with dpdk-telemetry-client.py
@ 2019-10-17 17:32 Robin Jarry
2019-10-17 17:37 ` Stephen Hemminger
0 siblings, 1 reply; 3+ messages in thread
From: Robin Jarry @ 2019-10-17 17:32 UTC (permalink / raw)
To: Kevin Laatz; +Cc: dev, Andrius Sirvys, Ciara Power, Reshma Pattan, stable
When running the dpdk-telemetry-client.py with python 3, we get the
following syntax errors:
File "usertools/dpdk-telemetry-client.py", line 70
print "\nResponse: \n", str(data)
^
SyntaxError: invalid syntax
File "usertools/dpdk-telemetry-client.py", line 93
print "\nResponse: \n", str(data)
^
SyntaxError: invalid syntax
File "usertools/dpdk-telemetry-client.py", line 111
file_path = sys.argv[1]
^
TabError: inconsistent use of tabs and spaces in indentation
Import print_function from __future__ and add parentheses where missing.
Also, use spaces for indentation everywhere.
Fixes: d1b94da4a4e0 ("usertools: add client script for telemetry")
Fixes: 53f293c9a783 ("usertools: replace unsafe input function")
Fixes: 4080e46c8078 ("telemetry: support global metrics")
Cc: Andrius Sirvys <andrius.sirvys@intel.com>
Cc: Ciara Power <ciara.power@intel.com>
Cc: Kevin Laatz <kevin.laatz@intel.com>
Cc: Reshma Pattan <reshma.pattan@intel.com>
Cc: stable@dpdk.org
Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
---
usertools/dpdk-telemetry-client.py | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/usertools/dpdk-telemetry-client.py b/usertools/dpdk-telemetry-client.py
index 60fe97af79a8..e06d6306cbd5 100755
--- a/usertools/dpdk-telemetry-client.py
+++ b/usertools/dpdk-telemetry-client.py
@@ -2,6 +2,8 @@
# SPDK-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
+from __future__ import print_function
+
import socket
import os
import sys
@@ -16,9 +18,9 @@
DEFAULT_FP = "/var/run/dpdk/default_client"
try:
- raw_input # Python 2
+ raw_input # Python 2
except NameError:
- raw_input = input # Python 3
+ raw_input = input # Python 3
class Socket:
@@ -74,7 +76,7 @@ def unregister(self): # Unregister a given client
def requestMetrics(self): # Requests metrics for given client
self.socket.client_fd.send(METRICS_REQ)
data = self.socket.client_fd.recv(BUFFER_SIZE)
- print "\nResponse: \n", str(data)
+ print("\nResponse: \n", str(data))
def repeatedlyRequestMetrics(self, sleep_time): # Recursively requests metrics for given client
print("\nPlease enter the number of times you'd like to continuously request Metrics:")
@@ -88,7 +90,7 @@ def repeatedlyRequestMetrics(self, sleep_time): # Recursively requests metrics f
def requestGlobalMetrics(self): #Requests global metrics for given client
self.socket.client_fd.send(GLOBAL_METRICS_REQ)
data = self.socket.client_fd.recv(BUFFER_SIZE)
- print "\nResponse: \n", str(data)
+ print("\nResponse: \n", str(data))
def interactiveMenu(self, sleep_time): # Creates Interactive menu within the script
while self.choice != 4:
@@ -121,10 +123,10 @@ def interactiveMenu(self, sleep_time): # Creates Interactive menu within the scr
sleep_time = 1
file_path = ""
if (len(sys.argv) == 2):
- file_path = sys.argv[1]
+ file_path = sys.argv[1]
else:
print("Warning - No filepath passed, using default (" + DEFAULT_FP + ").")
- file_path = DEFAULT_FP
+ file_path = DEFAULT_FP
client = Client()
client.getFilepath(file_path)
client.register()
--
2.23.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] usertools: fix py3 syntax errors with dpdk-telemetry-client.py
2019-10-17 17:32 [dpdk-dev] [PATCH] usertools: fix py3 syntax errors with dpdk-telemetry-client.py Robin Jarry
@ 2019-10-17 17:37 ` Stephen Hemminger
2019-10-27 20:39 ` Thomas Monjalon
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Hemminger @ 2019-10-17 17:37 UTC (permalink / raw)
To: Robin Jarry
Cc: Kevin Laatz, dev, Andrius Sirvys, Ciara Power, Reshma Pattan, stable
On Thu, 17 Oct 2019 19:32:12 +0200
Robin Jarry <robin.jarry@6wind.com> wrote:
> When running the dpdk-telemetry-client.py with python 3, we get the
> following syntax errors:
>
> File "usertools/dpdk-telemetry-client.py", line 70
> print "\nResponse: \n", str(data)
> ^
> SyntaxError: invalid syntax
>
> File "usertools/dpdk-telemetry-client.py", line 93
> print "\nResponse: \n", str(data)
> ^
> SyntaxError: invalid syntax
>
> File "usertools/dpdk-telemetry-client.py", line 111
> file_path = sys.argv[1]
> ^
> TabError: inconsistent use of tabs and spaces in indentation
>
> Import print_function from __future__ and add parentheses where missing.
> Also, use spaces for indentation everywhere.
>
> Fixes: d1b94da4a4e0 ("usertools: add client script for telemetry")
> Fixes: 53f293c9a783 ("usertools: replace unsafe input function")
> Fixes: 4080e46c8078 ("telemetry: support global metrics")
> Cc: Andrius Sirvys <andrius.sirvys@intel.com>
> Cc: Ciara Power <ciara.power@intel.com>
> Cc: Kevin Laatz <kevin.laatz@intel.com>
> Cc: Reshma Pattan <reshma.pattan@intel.com>
> Cc: stable@dpdk.org
> Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] usertools: fix py3 syntax errors with dpdk-telemetry-client.py
2019-10-17 17:37 ` Stephen Hemminger
@ 2019-10-27 20:39 ` Thomas Monjalon
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2019-10-27 20:39 UTC (permalink / raw)
To: Robin Jarry
Cc: dev, Stephen Hemminger, Kevin Laatz, Andrius Sirvys, Ciara Power,
Reshma Pattan, stable
17/10/2019 19:37, Stephen Hemminger:
> On Thu, 17 Oct 2019 19:32:12 +0200
> Robin Jarry <robin.jarry@6wind.com> wrote:
>
> > When running the dpdk-telemetry-client.py with python 3, we get the
> > following syntax errors:
> >
> > File "usertools/dpdk-telemetry-client.py", line 70
> > print "\nResponse: \n", str(data)
> > ^
> > SyntaxError: invalid syntax
> >
> > File "usertools/dpdk-telemetry-client.py", line 93
> > print "\nResponse: \n", str(data)
> > ^
> > SyntaxError: invalid syntax
> >
> > File "usertools/dpdk-telemetry-client.py", line 111
> > file_path = sys.argv[1]
> > ^
> > TabError: inconsistent use of tabs and spaces in indentation
> >
> > Import print_function from __future__ and add parentheses where missing.
> > Also, use spaces for indentation everywhere.
> >
> > Fixes: d1b94da4a4e0 ("usertools: add client script for telemetry")
> > Fixes: 53f293c9a783 ("usertools: replace unsafe input function")
> > Fixes: 4080e46c8078 ("telemetry: support global metrics")
> > Cc: Andrius Sirvys <andrius.sirvys@intel.com>
> > Cc: Ciara Power <ciara.power@intel.com>
> > Cc: Kevin Laatz <kevin.laatz@intel.com>
> > Cc: Reshma Pattan <reshma.pattan@intel.com>
> > Cc: stable@dpdk.org
> > Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
>
> Acked-by: Stephen Hemminger <stephen@networkplumber.org>
Applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-10-27 20:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-17 17:32 [dpdk-dev] [PATCH] usertools: fix py3 syntax errors with dpdk-telemetry-client.py Robin Jarry
2019-10-17 17:37 ` Stephen Hemminger
2019-10-27 20:39 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).