Author: Alexander Hesse <[email protected]> Branch: split-rpython Changeset: r59734:1e9c46f91f7e Date: 2013-01-05 17:21 +0100 http://bitbucket.org/pypy/pypy/changeset/1e9c46f91f7e/
Log: Fixed pypy_dir in test_getdocstrings diff --git a/pypy/tool/test/test_getdocstrings.py b/pypy/tool/test/test_getdocstrings.py --- a/pypy/tool/test/test_getdocstrings.py +++ b/pypy/tool/test/test_getdocstrings.py @@ -2,7 +2,7 @@ import glob, os.path, py, re this_dir = os.path.realpath(os.path.dirname(__file__)) -pypy_dir = os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..')) +pypy_dir = os.path.realpath(os.path.join(os.path.dirname(__file__), '..')) from pypy.tool.getdocstrings import quote, triplequotes from pypy.tool.getdocstrings import mk_std_filelist _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
