From 9bf78396cbf38ac13ec8f9065942abd804a565c3 Mon Sep 17 00:00:00 2001 From: Bruno da Silva de Oliveira Date: Sun, 6 Apr 2003 13:43:19 +0000 Subject: [PATCH] - fixed bug where return_opaque_pointer was not being added to the user context [SVN r18192] --- pyste/src/pyste.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyste/src/pyste.py b/pyste/src/pyste.py index 92eaf224..28124505 100644 --- a/pyste/src/pyste.py +++ b/pyste/src/pyste.py @@ -34,7 +34,7 @@ from policies import * from CppParser import CppParser, CppParserError import time -__VERSION__ = '0.6.5' +__VERSION__ = '0.6.6' def RecursiveIncludes(include): 'Return a list containg the include dir and all its subdirectories' @@ -137,6 +137,7 @@ def CreateContext(): context['reference_existing_object'] = reference_existing_object context['copy_const_reference'] = copy_const_reference context['copy_non_const_reference'] = copy_non_const_reference + context['return_opaque_pointer'] = return_opaque_pointer context['manage_new_object'] = manage_new_object # utils context['Wrapper'] = exporterutils.FunctionWrapper