summaryrefslogtreecommitdiff
path: root/Examples
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2023-05-17 13:38:04 +1200
committerOlly Betts <olly@survex.com>2023-05-17 13:38:04 +1200
commit56f82e554151a92ffcf6b938e5d57ac9d2170c9e (patch)
tree6ccfe8dfbd002d4b24d6820f6361f2340ccc59f6 /Examples
parent73872022fb46bf804c0ced2b37b0d84385236cc3 (diff)
downloadswig-56f82e554151a92ffcf6b938e5d57ac9d2170c9e.tar.gz
Remove obsolete debug line from callback_runme.py
We stopped wrapping C++ static method A::bar as A_bar in SWIG 4.1.0.
Diffstat (limited to 'Examples')
-rw-r--r--Examples/test-suite/python/callback_runme.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Examples/test-suite/python/callback_runme.py b/Examples/test-suite/python/callback_runme.py
index dbf957cbb..93883e064 100644
--- a/Examples/test-suite/python/callback_runme.py
+++ b/Examples/test-suite/python/callback_runme.py
@@ -2,7 +2,6 @@ import _callback
from callback import *
# callbacks are implemented by modifying docstrings, useful for debugging:
-# print("A_bar doc: {}".format(A_bar.__doc__))
# print("A.bar doc: {}".format(A.bar.__doc__))
if foo(2) != 2: