Author: Alex Gaynor <alex.gay...@gmail.com>
Branch: 
Changeset: r61523:91bfd223d006
Date: 2013-02-20 20:17 -0800
http://bitbucket.org/pypy/pypy/changeset/91bfd223d006/

Log:    Merged in modcloth/pypy/coding-guide-update-rlib-refs (pull request
        #124)

        Updating some file/import refs to point at new locations in rpython.

diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst
--- a/pypy/doc/coding-guide.rst
+++ b/pypy/doc/coding-guide.rst
@@ -303,7 +303,7 @@
 
   dicts with a unique key type only, provided it is hashable. Custom
   hash functions and custom equality will not be honored.
-  Use ``pypy.rlib.objectmodel.r_dict`` for custom hash functions.
+  Use ``rpython.rlib.objectmodel.r_dict`` for custom hash functions.
 
 
 **list comprehensions**
@@ -365,7 +365,7 @@
 We use normal integers for signed arithmetic.  It means that before
 translation we get longs in case of overflow, and after translation we get a
 silent wrap-around.  Whenever we need more control, we use the following
-helpers (which live the `pypy/rlib/rarithmetic.py`_):
+helpers (which live the `rpython/rlib/rarithmetic.py`_):
 
 **ovfcheck()**
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to