Consistency and PEP8

This commit is contained in:
Frank Smit
2012-08-19 23:47:02 +03:00
parent 206420a32e
commit 358da72277
+34 -49
View File
@@ -57,38 +57,33 @@ class ArgsList(object):
else:
self._args = args
def __len__(self):
return len(self._args)
def __repr__(self):
return '<args %s>' % (repr(self._args))
def __getitem__(self, i):
try:
return self.all[i]
except IndexError:
return None
def __contains__(self, x):
return self.first(x) is not None
def get(self, x):
"""Returns argument at given index, else none."""
try:
return self.all[x]
except IndexError:
return None
def get_with(self, x):
"""Returns first argument that contains given string."""
return self.all[self.first_with(x)]
return self.all[self.first_with(x)]
def remove(self, x):
"""Removes given arg (or list thereof) from Args object."""
@@ -104,32 +99,29 @@ class ArgsList(object):
else:
_remove(x)
def pop(self, x):
"""Removes and Returns value at given index, else none."""
try:
return self._args.pop(x)
except IndexError:
return None
def any_contain(self, x):
"""Tests if given string is contained in any stored argument."""
return bool(self.first_with(x))
def contains(self, x):
"""Tests if given object is in arguments list.
Accepts strings and lists of strings."""
return self.__contains__(x)
def first(self, x):
"""Returns first found index of given value (or list of values)"""
"""Returns first found index of given value (or list of values)."""
def _find( x):
def _find(x):
try:
return self.all.index(str(x))
except ValueError:
@@ -144,9 +136,8 @@ class ArgsList(object):
else:
return _find(x)
def first_with(self, x):
"""Returns first found index containing value (or list of values)"""
"""Returns first found index containing value (or list of values)."""
def _find(x):
try:
@@ -165,9 +156,10 @@ class ArgsList(object):
else:
return _find(x)
def first_without(self, x):
"""Returns first found index not containing value (or list of values)"""
"""Returns first found index not containing value
(or list of values).
"""
def _find(x):
try:
@@ -186,24 +178,24 @@ class ArgsList(object):
else:
return _find(x)
def start_with(self, x):
"""Returns all arguments beginning with given string (or list thereof)"""
"""Returns all arguments beginning with given string
(or list thereof).
"""
_args = []
_args = []
for arg in self.all:
if _is_collection(x):
for _x in x:
if arg.startswith(x):
_args.append(arg)
break
else:
if arg.startswith(x):
_args.append(arg)
return ArgsList(_args, no_argv=True)
for arg in self.all:
if _is_collection(x):
for _x in x:
if arg.startswith(x):
_args.append(arg)
break
else:
if arg.startswith(x):
_args.append(arg)
return ArgsList(_args, no_argv=True)
def contains_at(self, x, index):
"""Tests if given [list of] string is at given index."""
@@ -221,7 +213,6 @@ class ArgsList(object):
except IndexError:
return False
def has(self, x):
"""Returns true if argument exists at given index.
Accepts: integer.
@@ -233,9 +224,10 @@ class ArgsList(object):
except IndexError:
return False
def value_after(self, x):
"""Returns value of argument after given found argument (or list thereof)."""
"""Returns value of argument after given found argument
(or list thereof).
"""
try:
try:
@@ -248,7 +240,6 @@ class ArgsList(object):
except IndexError:
return None
@property
def grouped(self):
"""Extracts --flag groups from argument list.
@@ -271,7 +262,6 @@ class ArgsList(object):
return collection
@property
def last(self):
"""Returns last argument."""
@@ -281,16 +271,14 @@ class ArgsList(object):
except IndexError:
return None
@property
def all(self):
"""Returns all arguments."""
return self._args
def all_with(self, x):
"""Returns all arguments containing given string (or list thereof)"""
"""Returns all arguments containing given string (or list thereof)."""
_args = []
@@ -306,9 +294,10 @@ class ArgsList(object):
return ArgsList(_args, no_argv=True)
def all_without(self, x):
"""Returns all arguments not containing given string (or list thereof)"""
"""Returns all arguments not containing given string
(or list thereof).
"""
_args = []
@@ -324,21 +313,18 @@ class ArgsList(object):
return ArgsList(_args, no_argv=True)
@property
def flags(self):
"""Returns Arg object including only flagged arguments."""
return self.start_with('-')
@property
def not_flags(self):
"""Returns Arg object excluding flagged arguments."""
return self.all_without('-')
@property
def files(self, absolute=False):
"""Returns an expanded list of all valid paths that were passed in."""
@@ -355,7 +341,6 @@ class ArgsList(object):
return _paths
@property
def not_files(self):
"""Returns a list of all arguments that aren't files/globs."""
@@ -369,14 +354,12 @@ class ArgsList(object):
return ArgsList(_args, no_argv=True)
@property
def copy(self):
"""Returns a copy of Args object for temporary manipulation."""
return ArgsList(self.all)
@property
def assignments(self):
"""Extracts assignment values from assignments."""
@@ -385,8 +368,10 @@ class ArgsList(object):
for arg in self.all:
if '=' in arg:
collection.setdefault(arg.split('=', 1)[0], ArgsList(no_argv=True))
collection[arg.split('=', 1)[0]]._args.append(arg.split('=', 1)[1])
collection.setdefault(
arg.split('=', 1)[0], ArgsList(no_argv=True))
collection[arg.split('=', 1)[0]]._args.append(
arg.split('=', 1)[1])
return collection