From: Zac Medico Date: Sun, 10 Jun 2012 23:18:15 +0000 (-0700) Subject: dep: remove old "DEPEND SYNTAX" comments X-Git-Tag: v2.2.0_alpha111~61 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8625d3282ec860b795d75322565a95bb4c2e9673;p=portage.git dep: remove old "DEPEND SYNTAX" comments --- diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py index 4d0c4e288..d2df0425d 100644 --- a/pym/portage/dep/__init__.py +++ b/pym/portage/dep/__init__.py @@ -13,20 +13,6 @@ __all__ = [ '_repo_separator', '_slot_separator', ] -# DEPEND SYNTAX: -# -# 'use?' only affects the immediately following word! -# Nesting is the only legal way to form multiple '[!]use?' requirements. -# -# Where: 'a' and 'b' are use flags, and 'z' is a depend atom. -# -# "a? z" -- If 'a' in [use], then b is valid. -# "a? ( z )" -- Syntax with parenthesis. -# "a? b? z" -- Deprecated. -# "a? ( b? z )" -- Valid -# "a? ( b? ( z ) ) -- Valid -# - import re, sys import warnings from itertools import chain