[pypy-commit] pypy default: Applied reviewer's comments

tilarids noreply at buildbot.pypy.org
Wed Mar 20 21:49:16 CET 2013


Author: Sergey Kishchenko <sergey.kishchenko at quickoffice.com>
Branch: 
Changeset: r62574:6833c40c351c
Date: 2013-03-20 01:39 +0200
http://bitbucket.org/pypy/pypy/changeset/6833c40c351c/

Log:	Applied reviewer's comments

diff --git a/pypy/doc/getting-started-dev.rst b/pypy/doc/getting-started-dev.rst
--- a/pypy/doc/getting-started-dev.rst
+++ b/pypy/doc/getting-started-dev.rst
@@ -141,11 +141,11 @@
 ``PYPY_USESSION_DIR``
     RPython uses temporary session directories to store files that are generated during the 
     translation process(e.g., translated C files). ``PYPY_USESSION_DIR`` serves as a base directory for these session
-    dirs. The default value for this variable is the systems temporary dir.
+    dirs. The default value for this variable is the system's temporary dir.
 
 ``PYPY_USESSION_KEEP``
     By default RPython keeps only last ``PYPY_USESSION_KEEP`` (defaults to 3) session dirs inside ``PYPY_USESSION_DIR``. 
-    Increase this value if you want your C files to preserve (useful when producing lots of lldebug builds)
+    Increase this value if you want to preserve C files longer (useful when producing lots of lldebug builds).
 
 .. _`your own interpreters`: faq.html#how-do-i-compile-my-own-interpreters
 
diff --git a/rpython/tool/udir.py b/rpython/tool/udir.py
--- a/rpython/tool/udir.py
+++ b/rpython/tool/udir.py
@@ -12,7 +12,7 @@
 #
 #    $PYPY_USESSION_DIR/usession-$PYPY_USESSION_BASENAME-$USER
 #
-# The default value for $PYPY_USESSION_DIR is the system tmp.
+# The default value for $PYPY_USESSION_DIR is the system's tmp.
 # The default value for $PYPY_USESSION_BASENAME is the name
 # of the current Mercurial branch.
 #


More information about the pypy-commit mailing list