There's really no need for a special case here since they can be treated
like normal atoms that don't match the atom that's being searched for.
This reverts commit
76b4a2fdd777f7203428a9c8a5a0c434fff55252.
pmask_filename = os.path.join(pmask[0], "package.mask")
for i in range(len(pmask[1])):
l = pmask[1][i].strip()
- negated_atom = False
try:
l_atom = Atom(l, allow_repo=True,
allow_wildcard=True).without_repo
except InvalidAtom:
l_atom = None
- if l[:1] == '-':
- negated_atom = True
-
- if negated_atom or not l:
+ if l == "":
comment = ""
comment_valid = -1
elif l[0] == "#":