Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r60583:abdf791cac36
Date: 2013-01-28 09:31 +0100
http://bitbucket.org/pypy/pypy/changeset/abdf791cac36/

Log:    Oups! Indentation mistake probably. Can't set a field on an object
        that is None...

diff --git a/pypy/module/thread/os_local.py b/pypy/module/thread/os_local.py
--- a/pypy/module/thread/os_local.py
+++ b/pypy/module/thread/os_local.py
@@ -98,5 +98,5 @@
         local = wref()
         if local is not None:
             del local.dicts[ec]
-        local.last_dict = None
-        local.last_ec = None
+            local.last_dict = None
+            local.last_ec = None
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to