diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2013-04-22 03:18:17 +0300 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2013-04-22 03:18:17 +0300 |
| commit | c0d0a36fd4dda100d7b7f3f9e1835c07761d96b8 (patch) | |
| tree | 4e6dde25a25256fa75c91dd16a070a431d27f801 | |
| parent | bc8d4d6f14725901eb5acb1d78889be465dc20e5 (diff) | |
| download | pyramid-c0d0a36fd4dda100d7b7f3f9e1835c07761d96b8.tar.gz pyramid-c0d0a36fd4dda100d7b7f3f9e1835c07761d96b8.tar.bz2 pyramid-c0d0a36fd4dda100d7b7f3f9e1835c07761d96b8.zip | |
no need to reference oneself
| -rw-r--r-- | pyramid/testing.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyramid/testing.py b/pyramid/testing.py index b23094267..0c701727b 100644 --- a/pyramid/testing.py +++ b/pyramid/testing.py @@ -508,8 +508,7 @@ def tearDown(unhook_zca=True): pass def cleanUp(*arg, **kw): - """ :func:`pyramid.testing.cleanUp` is an alias for - :func:`pyramid.testing.setUp`. """ + """ An alias for :func:`pyramid.testing.setUp`. """ return setUp(*arg, **kw) class DummyRendererFactory(object): |
