[PATCH 1/7] py3k: The execfile built-in has been removed in python 3

Subject: [PATCH 1/7] py3k: The execfile built-in has been removed in python 3

Date: Wed, 14 Dec 2011 11:58:19 +0100

To: notmuch@notmuchmail.org

Cc:

From: Justus Winter


---
 bindings/python/setup.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bindings/python/setup.py b/bindings/python/setup.py
index 286fd19..2e58dab 100644
--- a/bindings/python/setup.py
+++ b/bindings/python/setup.py
@@ -7,7 +7,7 @@ from distutils.core import setup
 # get the notmuch version number without importing the notmuch module
 version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)),
                             'notmuch', 'version.py')
-execfile(version_file)
+exec(compile(open(version_file).read(), version_file, 'exec'))
 assert __VERSION__, 'Failed to read the notmuch binding version number'
 
 setup(name='notmuch',
-- 
1.7.7.3


Thread: