Author: Armin Rigo <[email protected]> Branch: Changeset: r59472:6a2252addfe3 Date: 2012-12-17 21:04 +0100 http://bitbucket.org/pypy/pypy/changeset/6a2252addfe3/
Log: Really remove the file README. diff --git a/README b/README deleted file mode 100644 --- a/README +++ /dev/null @@ -1,24 +0,0 @@ -===================================== -PyPy: Python in Python Implementation -===================================== - -Welcome to PyPy! - -PyPy is both an implementation of the Python programming language, and -an extensive compiler framework for dynamic language implementations. -You can build self-contained Python implementations which execute -independently from CPython. - -The home page is: - - http://pypy.org/ - -The getting-started document will help guide you: - - http://doc.pypy.org/en/latest/getting-started.html - -It will also point you to the rest of the documentation which is generated -from files in the pypy/doc directory within the source repositories. Enjoy -and send us feedback! - - the pypy-dev team <[email protected]> diff --git a/pypy/tool/genstatistic.py b/pypy/tool/genstatistic.py --- a/pypy/tool/genstatistic.py +++ b/pypy/tool/genstatistic.py @@ -7,7 +7,8 @@ pypydir = py.path.local(autopath.pypydir) def isdocfile(p): - return p.ext == '.txt' or p.basename in ('README', 'NOTES', 'LICENSE') + return (p.ext in ('.txt', '.rst') or + p.basename in ('README', 'NOTES', 'LICENSE')) def istestfile(p): if not p.check(file=1, ext='.py'): diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py --- a/pypy/tool/release/package.py +++ b/pypy/tool/release/package.py @@ -93,7 +93,7 @@ shutil.copytree(str(basedir.join('lib_pypy')), str(pypydir.join('lib_pypy')), ignore=ignore_patterns('.svn', 'py', '*.pyc', '*~')) - for file in ['LICENSE', 'README']: + for file in ['LICENSE', 'README.rst']: shutil.copy(str(basedir.join(file)), str(pypydir)) pypydir.ensure('include', dir=True) if sys.platform == 'win32': diff --git a/pypy/tool/release/test/test_package.py b/pypy/tool/release/test/test_package.py --- a/pypy/tool/release/test/test_package.py +++ b/pypy/tool/release/test/test_package.py @@ -33,7 +33,7 @@ assert not prefix.join('lib_pypy', 'py').check() assert not prefix.join('lib_pypy', 'ctypes_configure').check() assert prefix.join('LICENSE').check() - assert prefix.join('README').check() + assert prefix.join('README.rst').check() if package.USE_ZIPFILE_MODULE: zh = zipfile.ZipFile(str(builddir.join('%s.zip' % test))) assert zh.open('%s/lib_pypy/syslog.py' % test) _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
