summaryrefslogtreecommitdiffstats
path: root/pym/portage/dep/__init__.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-06-10 16:18:15 -0700
committerZac Medico <zmedico@gentoo.org>2012-06-10 16:18:15 -0700
commit8625d3282ec860b795d75322565a95bb4c2e9673 (patch)
treeeace3517c71602fced0d99655d41675d3822624c /pym/portage/dep/__init__.py
parentdaa04443e97f62555efd4a2a301103a27b7579b7 (diff)
downloadportage-8625d3282ec860b795d75322565a95bb4c2e9673.tar.gz
portage-8625d3282ec860b795d75322565a95bb4c2e9673.tar.bz2
portage-8625d3282ec860b795d75322565a95bb4c2e9673.zip
dep: remove old "DEPEND SYNTAX" comments
Diffstat (limited to 'pym/portage/dep/__init__.py')
-rw-r--r--pym/portage/dep/__init__.py14
1 files changed, 0 insertions, 14 deletions
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