diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-07-15 19:03:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-07-15 19:03:39 +0000 |
commit | cec85000de0626c5a3298de9d40f481982251b5a (patch) | |
tree | 294a514a6710404a037fffc8df6aff3aa343db70 | |
parent | 2fbd0d02be1dd5d8ed007786b52eca1cebe0ec77 (diff) | |
download | portage-cec85000de0626c5a3298de9d40f481982251b5a.tar.gz portage-cec85000de0626c5a3298de9d40f481982251b5a.tar.bz2 portage-cec85000de0626c5a3298de9d40f481982251b5a.zip |
Move normalize_path into portage_util.
svn path=/main/trunk/; revision=3891
-rw-r--r-- | pym/portage.py | 10 | ||||
-rw-r--r-- | pym/portage_util.py | 7 |
2 files changed, 9 insertions, 8 deletions
diff --git a/pym/portage.py b/pym/portage.py index f833851bd..68d12fbbe 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -76,7 +76,8 @@ try: import portage_util from portage_util import atomic_ofstream, apply_secpass_permissions, apply_recursive_permissions, \ dump_traceback, getconfig, grabdict, grabdict_package, grabfile, grabfile_package, \ - map_dictlist_vals, pickle_read, pickle_write, stack_dictlist, stack_dicts, stack_lists, \ + map_dictlist_vals, normalize_path, \ + pickle_read, pickle_write, stack_dictlist, stack_dicts, stack_lists, \ unique_array, varexpand, writedict, writemsg, writemsg_stdout, write_atomic import portage_exception import portage_gpg @@ -187,13 +188,6 @@ def prefix_array(array,prefix,doblanks=1): newarray.append(x) return newarray -def normalize_path(mypath): - if mypath.startswith(os.path.sep): - # posixpath.normpath collapses 3 or more leading slashes to just 1. - return os.path.normpath(2*os.path.sep + mypath) - else: - return os.path.normpath(mypath) - dircache = {} cacheHit=0 cacheMiss=0 diff --git a/pym/portage_util.py b/pym/portage_util.py index 79babe05c..0449b614f 100644 --- a/pym/portage_util.py +++ b/pym/portage_util.py @@ -30,6 +30,13 @@ def writemsg_stdout(mystr,noiselevel=0): """Prints messages stdout based on the noiselimit setting""" writemsg(mystr, noiselevel=noiselevel, fd=sys.stdout) +def normalize_path(mypath): + if mypath.startswith(os.path.sep): + # posixpath.normpath collapses 3 or more leading slashes to just 1. + return os.path.normpath(2*os.path.sep + mypath) + else: + return os.path.normpath(mypath) + def grabfile(myfilename, compat_level=0, recursive=0): """This function grabs the lines in a file, normalizes whitespace and returns lines in a list; if a line begins with a #, it is ignored, as are empty lines""" |