Home | History | Annotate | Download | only in python2.7

Lines Matching refs:user_base

76 USER_BASE = None
224 variable ``USER_BASE`` is not initialized yet, this function will also set
227 global USER_BASE
228 if USER_BASE is not None:
229 return USER_BASE
231 USER_BASE = get_config_var('userbase')
232 return USER_BASE
241 user_base = getuserbase() # this will also set USER_BASE
265 # this call will also make sure USER_BASE and USER_SITE are set
555 With arguments print the value of USER_BASE and/or USER_SITE separated
571 print "USER_BASE: %r (%s)" % (USER_BASE,
572 "exists" if os.path.isdir(USER_BASE) else "doesn't exist")
580 buffer.append(USER_BASE)