Generate a random string of nb chars
(self, nb=20)
| 324 | return responsedata |
| 325 | |
| 326 | def __generateRandomString__(self, nb=20): |
| 327 | ''' |
| 328 | Generate a random string of nb chars |
| 329 | ''' |
| 330 | return ''.join(random.choice(string.ascii_uppercase) for x in range(nb)) |
| 331 | |
| 332 | def __loadFile__(self, localFile): |
| 333 | ''' |
no outgoing calls
no test coverage detected