summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-03-20 10:34:07 -0500
committerBenjamin Peterson <benjamin@python.org>2015-03-20 10:34:07 -0500
commit8e5b029f6d691efc6333abc9d97872e633b187cd (patch)
tree8a1f2a89c7c7417880f2df888af0aa2081e9e806
parent520732a48d542b0ce8f0c662563fcf146cc655bf (diff)
downloadsix-8e5b029f6d691efc6333abc9d97872e633b187cd.tar.gz
documentation updates for issue #108
-rw-r--r--CHANGES3
-rw-r--r--documentation/index.rst4
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index d572714..1aba42b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,9 @@ This file lists the changes in each six version.
Development version
-------------------
+- Pull request #60 and issue #108: Add `six.moves.getcwd` and
+ `six.moves.getcwdu`.
+
- Pull request #64: Add `create_unbound_method` to create unbound methods.
1.9.0
diff --git a/documentation/index.rst b/documentation/index.rst
index 99168ee..05f95e5 100644
--- a/documentation/index.rst
+++ b/documentation/index.rst
@@ -577,6 +577,10 @@ Supported renames:
+------------------------------+-------------------------------------+-------------------------------------+
| ``filterfalse`` | :func:`py2:itertools.ifilterfalse` | :func:`py3:itertools.filterfalse` |
+------------------------------+-------------------------------------+-------------------------------------+
+| ``getcwd`` | :func:`py2:os.getcwdu` | :func:`py3:os.getcwd` |
++------------------------------+-------------------------------------+-------------------------------------+
+| ``getcwdb`` | :func:`py2:os.getcwd` | :func:`py3:os.getcwdb` |
++------------------------------+-------------------------------------+-------------------------------------+
| ``http_cookiejar`` | :mod:`py2:cookielib` | :mod:`py3:http.cookiejar` |
+------------------------------+-------------------------------------+-------------------------------------+
| ``http_cookies`` | :mod:`py2:Cookie` | :mod:`py3:http.cookies` |