summaryrefslogtreecommitdiff
path: root/Examples/test-suite/namespace_typemap.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/namespace_typemap.i')
-rw-r--r--Examples/test-suite/namespace_typemap.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/namespace_typemap.i b/Examples/test-suite/namespace_typemap.i
index e4e0af905..984b93a6f 100644
--- a/Examples/test-suite/namespace_typemap.i
+++ b/Examples/test-suite/namespace_typemap.i
@@ -75,7 +75,7 @@ namespace test {
class string_class;
#ifdef SWIGPYTHON
%typemap(in) string_class * {
- $1 = new string_class(PyString_AsString($input));
+ $1 = new string_class(SWIG_Python_str_AsChar($input));
}
%typemap(freearg) string_class * {
delete $1;