示例#1
0
 def testSetDecimalPoint(self):
     point = pg.get_decimal_point()
     try:
         pg.set_decimal_point('*')
         r = pg.get_decimal_point()
         self.assertIsInstance(r, str)
         self.assertEqual(r, '*')
     finally:
         pg.set_decimal_point(point)
     r = pg.get_decimal_point()
     self.assertIsInstance(r, str)
     self.assertEqual(r, point)
示例#2
0
 def testSetDecimalPoint(self):
     point = pg.get_decimal_point()
     try:
         pg.set_decimal_point('*')
         r = pg.get_decimal_point()
         self.assertIsInstance(r, str)
         self.assertEqual(r, '*')
     finally:
         pg.set_decimal_point(point)
     r = pg.get_decimal_point()
     self.assertIsInstance(r, str)
     self.assertEqual(r, point)
示例#3
0
 def testGetDecimalPoint(self):
     r = pg.get_decimal_point()
     self.assertIsInstance(r, str)
     self.assertEqual(r, '.')
示例#4
0
 def testGetDecimalPoint(self):
     r = pg.get_decimal_point()
     self.assertIsInstance(r, str)
     self.assertEqual(r, '.')