Example #1
0
    def get_exponential_symbol(self):
        """Return the symbol used to separate mantissa and exponent

        >>> Locale('en', 'US').get_exponential_symbol()
        u'E'
        """
        return numbers.get_exponential_symbol(self)
Example #2
0
def test_get_exponential_symbol():
    assert numbers.get_exponential_symbol('en_US') == u'E'
Example #3
0
def test_get_exponential_symbol():
    assert numbers.get_exponential_symbol('en_US') == u'E'
Example #4
0
 def get_exponential_symbol(self):
     """Return the symbol used to separate mantissa and exponent
     """
     return numbers.get_exponential_symbol(self)