aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/python/files/python-3.2-argparse.patch')
-rw-r--r--dev-lang/python/files/python-3.2-argparse.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-lang/python/files/python-3.2-argparse.patch b/dev-lang/python/files/python-3.2-argparse.patch
deleted file mode 100644
index 12ea03c..0000000
--- a/dev-lang/python/files/python-3.2-argparse.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ur Python-2.7.2.orig/Lib/test/test_import.py Python-2,7,2/Lib/test/test_import.py
---- Lib/test/test_import.py 2010-12-15 07:06:25.000000000 +0800
-+++ Lib/test/test_import.py 2011-11-11 13:18:42.290846014 +0800
-@@ -4,6 +4,7 @@
- from importlib.test.import_ import util as importlib_util
- import marshal
- import os
-+import platform
- import py_compile
- import random
- import stat
-@@ -534,7 +535,9 @@
-
- @unittest.skipUnless(os.name == 'posix',
- "test meaningful only on posix systems")
-- def test_unwritable_directory(self):
-+ @unittest.skipIf(platform.system() == 'FreeBSD' and os.geteuid() == 0,
-+ "due to non-standard filesystem permission semantics (issue #11956)")
-+ def test_unwritable_directory(self):
- # When the umask causes the new __pycache__ directory to be
- # unwritable, the import still succeeds but no .pyc file is written.
- with temp_umask(0o222):
-