10 getuser() - get the user name from the environment or password database |
10 getuser() - get the user name from the environment or password database |
11 |
11 |
12 This module is a replacement for the one found in the Python distribution. It |
12 This module is a replacement for the one found in the Python distribution. It |
13 is to provide a debugger compatible variant of the a.m. functions. |
13 is to provide a debugger compatible variant of the a.m. functions. |
14 """ |
14 """ |
15 |
|
16 import sys |
|
17 |
15 |
18 __all__ = ["getpass","getuser"] |
16 __all__ = ["getpass","getuser"] |
19 |
17 |
20 def getuser(): |
18 def getuser(): |
21 """ |
19 """ |