File libcxx-fix-python3-syntax-error.patch of Package llvm4.8052
From 2b495bd9d72a3905b347ee0848c62ac80a23cbc9 Mon Sep 17 00:00:00 2001
From: Eric Fiselier <eric@efcs.ca>
Date: Tue, 7 Feb 2017 21:21:17 +0000
Subject: [PATCH] fix python3 syntax error
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@294355 91177308-0d34-0410-b5e6-96231b3b80d8
---
test/support/filesystem_dynamic_test_helper.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/support/filesystem_dynamic_test_helper.py b/test/support/filesystem_dynamic_test_helper.py
index 1f48c9527..d2b2810d0 100644
--- a/test/support/filesystem_dynamic_test_helper.py
+++ b/test/support/filesystem_dynamic_test_helper.py
@@ -75,7 +75,7 @@ def create_fifo(source):
def create_socket(source):
- mode = 0600|stat.S_IFSOCK
+ mode = 0o600 | stat.S_IFSOCK
os.mknod(sanitize(source), mode)
--
2.13.6