dep: remove old "DEPEND SYNTAX" comments
authorZac Medico <zmedico@gentoo.org>
Sun, 10 Jun 2012 23:18:15 +0000 (16:18 -0700)
committerZac Medico <zmedico@gentoo.org>
Sun, 10 Jun 2012 23:18:15 +0000 (16:18 -0700)
pym/portage/dep/__init__.py

index 4d0c4e2886602ac565cf75a6ecc6524348c2e4a2..d2df0425d287209a56bd5a09586d352520770de5 100644 (file)
@@ -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