Author: Dan Buch <d.b...@modcloth.com>
Branch: coding-guide-update-rlib-refs
Changeset: r61522:d250f67daf8b
Date: 2013-02-20 23:12 -0500
http://bitbucket.org/pypy/pypy/changeset/d250f67daf8b/

Log:    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