From: Zac Medico Date: Thu, 12 Aug 2010 18:21:43 +0000 (-0700) Subject: Don't use unicode wrapper for mkfifo since it only allows string X-Git-Tag: v2.2_rc68~255 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5642f59f83cb8854abaf288b1f2597075c5529cf;p=portage.git Don't use unicode wrapper for mkfifo since it only allows string arguments in python3. --- 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,