summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Iles <aaron.iles@gmail.com>2013-01-07 21:58:49 +1100
committerAaron Iles <aaron.iles@gmail.com>2013-01-07 21:58:49 +1100
commit8ae3ff896fc0f99229c9082d3cf53e23b80a77ab (patch)
tree313d2d1f2fd45764c87c05e5a701dde3e151da40
parentc65d42f7da60693dd112792cf70d3fe1ba5aea7b (diff)
downloadfuncsigs-8ae3ff896fc0f99229c9082d3cf53e23b80a77ab.tar.gz
Update documentation with PyPy compatability
Adds details of testing and compatability with PyPy to the README and proejct documentation.
-rw-r--r--README.rst10
-rw-r--r--docs/index.rst10
2 files changed, 12 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 328abb3..ed76f16 100644
--- a/README.rst
+++ b/README.rst
@@ -35,13 +35,15 @@ The ``funcsigs`` backport has been tested against:
* CPython 2.6
* CPython 2.7
* CPython 3.2
+* PyPy 1.9
Continuous integration testing is provided by `Travis CI`_.
-There is one known compatability issue with Python 2.x when a function is
-assigned to the ``__wrapped__`` property of a class after it has been
-constructed. Otherwise the functionality is believed to be uniform between both
-Python2 and Python3.
+Under Python 2.x there is a compatability issue when a function is assigned to
+the ``__wrapped__`` property of a class after it has been constructed.
+Similiarily there under PyPy directly passing the ``__call__`` method of a
+builtin is also a compatability issues. Otherwise the functionality is
+believed to be uniform between both Python2 and Python3.
Issues
------
diff --git a/docs/index.rst b/docs/index.rst
index e7da6c2..5d0f42f 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -24,13 +24,15 @@ The *funcsigs* backport has been tested against:
* CPython 2.6
* CPython 2.7
* CPython 3.2
+* PyPy 1.9
Continuous integration testing is provided by `Travis CI`_.
-There is one known compatability issue with Python 2.x when a function is
-assigned to the ``__wrapped__`` property of a class after it has been
-constructed. Otherwise the functionality is believed to be uniform between both
-Python2 and Python3.
+Under Python 2.x there is a compatability issue when a function is assigned to
+the ``__wrapped__`` property of a class after it has been constructed.
+Similiarily there under PyPy directly passing the ``__call__`` method of a
+builtin is also a compatability issues. Otherwise the functionality is
+believed to be uniform between both Python2 and Python3.
.. _Travis CI: http://travis-ci.org/