Skip to content

Commit

Permalink
Add support for PyPy and PyPy3.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 24, 2014
1 parent 5ae8da1 commit 47a9193
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,8 @@ env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=pypy3
install:
- travis_retry pip install tox
script:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.txt
Expand Up @@ -5,6 +5,8 @@ CHANGES
4.0.0 (unreleased)
------------------

- Add support for PyPy and PyPy3.

- Add support for Python 3.4.

- Add support for testing on Travis.
Expand Down
3 changes: 3 additions & 0 deletions src/zope/contentprovider/README.txt
Expand Up @@ -123,6 +123,9 @@ So let's create a simple content provider:
...
... def render(self):
... return u'<div class="box">%s</div>' %self.message
...
... def __repr__(self):
... return '<MessageBox object at %x>' % id(self)

The ``update()`` method is executed during phase one. Since no state needs to
be calculated and no data is modified by this simple content provider, it is
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33,py34
py26,py27,py33,py34,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit 47a9193

Please sign in to comment.