[pypy-commit] pypy py3k: alphabetize

pjenvey noreply at buildbot.pypy.org
Sun Feb 17 21:31:30 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r61357:f5639c619280
Date: 2013-02-17 12:30 -0800
http://bitbucket.org/pypy/pypy/changeset/f5639c619280/

Log:	alphabetize

diff --git a/pypy/module/exceptions/__init__.py b/pypy/module/exceptions/__init__.py
--- a/pypy/module/exceptions/__init__.py
+++ b/pypy/module/exceptions/__init__.py
@@ -13,7 +13,6 @@
         'BufferError' : 'interp_exceptions.W_BufferError',
         'BytesWarning'  : 'interp_exceptions.W_BytesWarning',
         'DeprecationWarning' : 'interp_exceptions.W_DeprecationWarning',
-        'ResourceWarning'  : 'interp_exceptions.W_ResourceWarning',
         'EOFError' : 'interp_exceptions.W_EOFError',
         'EnvironmentError' : 'interp_exceptions.W_EnvironmentError',
         'Exception' : 'interp_exceptions.W_Exception',
@@ -35,6 +34,7 @@
         'OverflowError' : 'interp_exceptions.W_OverflowError',
         'PendingDeprecationWarning' : 'interp_exceptions.W_PendingDeprecationWarning',
         'ReferenceError' : 'interp_exceptions.W_ReferenceError',
+        'ResourceWarning'  : 'interp_exceptions.W_ResourceWarning',
         'RuntimeError' : 'interp_exceptions.W_RuntimeError',
         'RuntimeWarning' : 'interp_exceptions.W_RuntimeWarning',
         'StopIteration' : 'interp_exceptions.W_StopIteration',


More information about the pypy-commit mailing list