From 5642f59f83cb8854abaf288b1f2597075c5529cf Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 12 Aug 2010 11:21:43 -0700 Subject: Don't use unicode wrapper for mkfifo since it only allows string arguments in python3. --- pym/portage/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index cb84218c4..a6760b245 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -289,6 +289,7 @@ class _unicode_module_wrapper(object): import os as _os _os_overrides = { id(_os.fdopen) : _os.fdopen, + id(_os.mkfifo) : _os.mkfifo, id(_os.popen) : _os.popen, id(_os.read) : _os.read, id(_os.system) : _os.system, -- cgit v1.2.3-1-g7c22