File: python-supported-failures.patch

package info (click to toggle)
pyrsistent 0.20.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 688 kB
  • sloc: python: 5,289; ansic: 1,213; makefile: 8
file content (18 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- a/setup.py
+++ b/setup.py
@@ -40,6 +40,7 @@
             e = sys.exc_info()[1]
             sys.stderr.write('%s\n' % str(e))
             sys.stderr.write(self.warning_message % ("extension modules", "There was an issue with your platform configuration - see above."))
+            raise
 
     def build_extension(self, ext):
         name = ext.name
@@ -49,6 +50,7 @@
             e = sys.exc_info()[1]
             sys.stderr.write('%s\n' % str(e))
             sys.stderr.write(self.warning_message % ("%s extension module" % name, "The output above this warning shows how the compilation failed."))
+            raise
 
 setup(
     name='pyrsistent',