File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ URI is defined in :rfc:`std-66 <3986>`)::
73
73
Environment markers allow making a specification only take effect in some
74
74
environments::
75
75
76
- marker_op = version_cmp | (wsp* 'in') | (wsp* 'not' wsp+ 'in')
76
+ marker_op = version_cmp | (wsp+ 'in' wsp+ ) | (wsp+ 'not' wsp+ 'in' wsp+ )
77
77
python_str_c = (wsp | letter | digit | '(' | ')' | '.' | '{' | '}' |
78
78
'-' | '_' | '*' | '#' | ':' | ';' | ',' | '/' | '?' |
79
79
'[' | ']' | '!' | '~' | '`' | '@' | '$' | '%' | '^' |
@@ -116,7 +116,7 @@ Giving us a rule for name based requirements::
116
116
117
117
And a rule for direct reference specifications::
118
118
119
- url_req = name wsp* extras? wsp* urlspec wsp+ quoted_marker?
119
+ url_req = name wsp* extras? wsp* urlspec ( wsp+ quoted_marker?) ?
120
120
121
121
Leading to the unified rule that can specify a dependency.::
122
122
You can’t perform that action at this time.
0 commit comments