From a41bf1f9e8f8d703181e8373d4ed4db24dd8fe93 Mon Sep 17 00:00:00 2001 From: Max Grender-Jones Date: Sat, 3 Jan 2015 10:49:20 +0000 Subject: Fixes #108 (os.getcwd has been renamed in move from 2 to 3) --- six.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'six.py') diff --git a/six.py b/six.py index ffa3fe1..da6afc5 100644 --- a/six.py +++ b/six.py @@ -234,6 +234,8 @@ _moved_attributes = [ MovedAttribute("input", "__builtin__", "builtins", "raw_input", "input"), MovedAttribute("intern", "__builtin__", "sys"), MovedAttribute("map", "itertools", "builtins", "imap", "map"), + MovedAttribute("getcwd", "os", "os", "getcwdu", "getcwd"), + MovedAttribute("getcwdb", "os", "os", "getcwd", "getcwdb"), MovedAttribute("range", "__builtin__", "builtins", "xrange", "range"), MovedAttribute("reload_module", "__builtin__", "imp", "reload"), MovedAttribute("reduce", "__builtin__", "functools"), -- cgit v1.2.1