diff options
| author | Tres Seaver <tseaver@palladion.com> | 2013-04-22 04:59:45 -0700 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2013-04-22 04:59:45 -0700 |
| commit | f082bbd16610b6454c475bb77d0269a690fc3ac1 (patch) | |
| tree | c729717897fdf503e4cc9f2a1a677feb7535c87a | |
| parent | 8f7d77bbe80bbb71b66eaea0e7d820292d0a9c1c (diff) | |
| parent | c0d0a36fd4dda100d7b7f3f9e1835c07761d96b8 (diff) | |
| download | pyramid-f082bbd16610b6454c475bb77d0269a690fc3ac1.tar.gz pyramid-f082bbd16610b6454c475bb77d0269a690fc3ac1.tar.bz2 pyramid-f082bbd16610b6454c475bb77d0269a690fc3ac1.zip | |
Merge pull request #991 from tshepang/patch-5
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): |
