[pypy-svn] r40314 - in pypy/dist/pypy: doc doc/config objspace rpython/ootypesystem translator/microbench/pybench

gbrandl at codespeak.net gbrandl at codespeak.net
Mon Mar 12 13:14:41 CET 2007


Author: gbrandl
Date: Mon Mar 12 13:14:35 2007
New Revision: 40314

Modified:
   pypy/dist/pypy/doc/config/objspace.std.withshadowtracking.txt
   pypy/dist/pypy/doc/parser.txt
   pypy/dist/pypy/doc/project-ideas.txt
   pypy/dist/pypy/objspace/trace.py
   pypy/dist/pypy/rpython/ootypesystem/rstr.py
   pypy/dist/pypy/translator/microbench/pybench/README
   pypy/dist/pypy/translator/microbench/pybench/pybench.py
Log:
it's -> its where appropriate.


Modified: pypy/dist/pypy/doc/config/objspace.std.withshadowtracking.txt
==============================================================================
--- pypy/dist/pypy/doc/config/objspace.std.withshadowtracking.txt	(original)
+++ pypy/dist/pypy/doc/config/objspace.std.withshadowtracking.txt	Mon Mar 12 13:14:35 2007
@@ -1,7 +1,7 @@
 Enable "shadow tracking". This means a special dict representation is used
 together with `multidicts`_. This dict representation is used only for instance
 dictionaries. The instance dictionary tracks whether an instance attribute
-shadows an attribute of it's class. This makes method calls slightly faster in
+shadows an attribute of its class. This makes method calls slightly faster in
 the following way: When calling a method the first thing that is checked is the
 class dictionary to find descriptors. Usually, when a method is found, the
 instance dictionary is then checked for instance attributes shadowing the class

Modified: pypy/dist/pypy/doc/parser.txt
==============================================================================
--- pypy/dist/pypy/doc/parser.txt	(original)
+++ pypy/dist/pypy/doc/parser.txt	Mon Mar 12 13:14:35 2007
@@ -195,7 +195,7 @@
 -----------------------
 
 For now we are working at translating the existing compiler module without
-changing it's design too much. That means we won't have enough flexibility
+changing its design too much. That means we won't have enough flexibility
 to be able to handle new AST nodes at runtime.
 
 parser module

Modified: pypy/dist/pypy/doc/project-ideas.txt
==============================================================================
--- pypy/dist/pypy/doc/project-ideas.txt	(original)
+++ pypy/dist/pypy/doc/project-ideas.txt	Mon Mar 12 13:14:35 2007
@@ -90,7 +90,7 @@
 * do benchmark runs to see how much speedup the currently written
   optimizations give
 
-* profile pypy-c and it's variants with these benchmarks, identify slow areas
+* profile pypy-c and its variants with these benchmarks, identify slow areas
 
 * try to come up with optimized implementations for these slow areas
 

Modified: pypy/dist/pypy/objspace/trace.py
==============================================================================
--- pypy/dist/pypy/objspace/trace.py	(original)
+++ pypy/dist/pypy/objspace/trace.py	Mon Mar 12 13:14:35 2007
@@ -206,7 +206,7 @@
         
         # XXX Rename
         def reset_trace(self):
-            """ Returns the class to it's original form. """
+            """ Returns the class to its original form. """
             space.__class__ = space.__oldclass__
             del space.__oldclass__
 

Modified: pypy/dist/pypy/rpython/ootypesystem/rstr.py
==============================================================================
--- pypy/dist/pypy/rpython/ootypesystem/rstr.py	(original)
+++ pypy/dist/pypy/rpython/ootypesystem/rstr.py	Mon Mar 12 13:14:35 2007
@@ -6,7 +6,7 @@
 from pypy.rpython.lltypesystem.lltype import Ptr, Char, UniChar
 from pypy.rpython.ootypesystem import ootype
 
-# TODO: investigate if it's possibile and it's worth to concatenate a
+# TODO: investigate if it's possible and it's worth to concatenate a
 # String and a Char directly without passing to Char-->String
 # conversion
 

Modified: pypy/dist/pypy/translator/microbench/pybench/README
==============================================================================
--- pypy/dist/pypy/translator/microbench/pybench/README	(original)
+++ pypy/dist/pypy/translator/microbench/pybench/README	Mon Mar 12 13:14:35 2007
@@ -5,7 +5,7 @@
 ------------
 
 Run 'pybench.py -h' to see the help screen.
-Run 'pybench.py' to just let the benchmark suite do it's thing and
+Run 'pybench.py' to just let the benchmark suite do its thing and
 'pybench.py -f <file>' to have it store the results in a file too.
 
 Change list

Modified: pypy/dist/pypy/translator/microbench/pybench/pybench.py
==============================================================================
--- pypy/dist/pypy/translator/microbench/pybench/pybench.py	(original)
+++ pypy/dist/pypy/translator/microbench/pybench/pybench.py	Mon Mar 12 13:14:35 2007
@@ -66,7 +66,7 @@
         call of .run().
 
         If you change a test in some way, don't forget to increase
-        it's version number.
+        its version number.
 
     """
     operations = 1      # number of operations done per test()-call



More information about the Pypy-commit mailing list