summaryrefslogtreecommitdiff
path: root/devel/py-debugpy/files/patch-src-debugpy-_vendored-pydevd-pydevd_attach_to_process-winappdbg-plugins-do_example.py
blob: 231418caedee3ed1e1aeefce4e1522797959c9fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/do_example.py.orig	2021-09-09 10:13:22 UTC
+++ src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/do_example.py
@@ -34,8 +34,8 @@ __revision__ = "$Id$"
 
 def do(self, arg):
     ".example - This is an example plugin for the command line debugger"
-    print "This is an example command."
-    print "%s.do(%r, %r):" % (__name__, self, arg)
-    print "  last event", self.lastEvent
-    print "  prefix", self.cmdprefix
-    print "  arguments", self.split_tokens(arg)
+    print("This is an example command.")
+    print("%s.do(%r, %r):" % (__name__, self, arg))
+    print("  last event", self.lastEvent)
+    print("  prefix", self.cmdprefix)
+    print("  arguments", self.split_tokens(arg))