
__builtin__ does not exist in Python 3, use six.moves.builtins instead. Change-Id: I1256f7df641af1085daca1d1ad2c34cb44cda265 closes-bug: #1290234
7 lines
210 B
Python
7 lines
210 B
Python
# See http://code.google.com/p/python-nose/issues/detail?id=373
|
|
# The code below enables nosetests to work with i18n _() blocks
|
|
|
|
import six.moves.builtins as __builtin__
|
|
|
|
setattr(__builtin__, '_', lambda x: x)
|