summaryrefslogtreecommitdiff
path: root/six.py
diff options
context:
space:
mode:
authorMax Grender-Jones <MaxGrenderJones@gmail.com>2015-01-03 10:49:20 +0000
committerMax Grender-Jones <MaxGrenderJones@gmail.com>2015-01-03 10:49:20 +0000
commita41bf1f9e8f8d703181e8373d4ed4db24dd8fe93 (patch)
tree27c671ea913c255a1ec3e7d125e825793c6cb1d9 /six.py
parent0476f5443d7a601d0aca0077b46f9dbd22f24017 (diff)
downloadsix-git-a41bf1f9e8f8d703181e8373d4ed4db24dd8fe93.tar.gz
Fixes #108 (os.getcwd has been renamed in move from 2 to 3)
Diffstat (limited to 'six.py')
-rw-r--r--six.py2
1 files changed, 2 insertions, 0 deletions
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"),