Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r64396:f752335dabb7
Date: 2013-05-21 20:25 +0200
http://bitbucket.org/pypy/pypy/changeset/f752335dabb7/

Log:    typo

diff --git a/pypy/goal/targetpypystandalone.py 
b/pypy/goal/targetpypystandalone.py
--- a/pypy/goal/targetpypystandalone.py
+++ b/pypy/goal/targetpypystandalone.py
@@ -124,13 +124,13 @@
 
     @entrypoint('main', [], c_name='pypy_init_threads')
     def pypy_init_threads():
-        if space.config.usemodules.thread:
+        if space.config.objspace.usemodules.thread:
             os_thread.setup_threads(space)
             rffi.aroundstate.before()
 
     @entrypoint('main', [], c_name='pypy_thread_attach')
     def pypy_thread_attach():
-        if space.config.usemodules.thread:
+        if space.config.objspace.usemodules.thread:
             rthread.gc_thread_start()
 
     w_globals = space.newdict()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to