This should fix MarkupSafe on 3.x
diff --git a/setup.py b/setup.py
index ddc1f1b..75f8d14 100644
--- a/setup.py
+++ b/setup.py
@@ -40,13 +40,13 @@
     def run(self):
         try:
             build_ext.run(self)
-        except DistutilsPlatformError, x:
+        except DistutilsPlatformError:
             raise BuildFailed()
 
     def build_extension(self, ext):
         try:
             build_ext.build_extension(self, ext)
-        except ext_errors, x:
+        except ext_errors:
             raise BuildFailed()
 
 
@@ -59,7 +59,7 @@
         features['speedups'] = speedups
     setup(
         name='MarkupSafe',
-        version='0.9.1',
+        version='0.9.2',
         url='http://dev.pocoo.org/',
         license='BSD',
         author='Armin Ronacher',