()
| 23 | from datetime import datetime |
| 24 | |
| 25 | def currentUser(): |
| 26 | try: |
| 27 | return check_output("who", shell = True).split()[0]; |
| 28 | except: |
| 29 | print 'Unhandled Exception at performanceUtility::currentUser()' |
| 30 | raise |
| 31 | |
| 32 | #Details: Generate sorted numbers in radices of 2,3 and 5 upto a given upper limit number |
| 33 | def generate235Radices(maxSize): |
nothing calls this directly
no outgoing calls
no test coverage detected