From aa7a086933c8b03d2f7f78874342a53719a24fa5 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 29 Jul 2010 09:03:15 -0400 Subject: support python 2.5.4+ for marshaller/demarshallers Patch adds a "from __future__" import that doesn't affect newer python's but allows python 2.5.4 to run the code (tested under scratchbox, n900 build environment) --- python_modules/demarshal.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python_modules/demarshal.py') diff --git a/python_modules/demarshal.py b/python_modules/demarshal.py index c588f98..cbe3599 100644 --- a/python_modules/demarshal.py +++ b/python_modules/demarshal.py @@ -1,3 +1,4 @@ +from __future__ import with_statement import ptypes import codegen -- cgit