File tree Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Expand file tree Collapse file tree 1 file changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -147,20 +147,22 @@ def get_api_data_url(name, version):
147
147
r'(?P<version>(.*))'
148
148
).match
149
149
150
- """
151
- Example:
152
- >>> p = parse_file_line('authors: "BAP Team"')
153
- >>> assert p.group('key') == ('authors')
154
- >>> assert p.group('value') == ('"BAP Team"')
155
-
156
- >>> p = parse_file_line('md5=b7a7b7cce64eabf224d05ed9f2b9d471')
157
- >>> assert p.group('key') == ('md5')
158
- >>> assert p.group('value') == ('b7a7b7cce64eabf224d05ed9f2b9d471')
159
-
160
- >>> p = parse_dep('"bap-std" {= "1.0.0"}')
161
- >>> assert p.group('name') == ('bap-std')
162
- >>> assert p.group('version') == ('{= "1.0.0"}')
163
- """
150
+ def _test_parse ():
151
+ """
152
+ Example::
153
+
154
+ >>> p = parse_file_line('authors: "BAP Team"')
155
+ >>> assert p.group('key') == ('authors')
156
+ >>> assert p.group('value') == ('"BAP Team"')
157
+
158
+ >>> p = parse_checksum('md5=b7a7b7cce64eabf224d05ed9f2b9d471')
159
+ >>> assert p.group('key') == ('md5')
160
+ >>> assert p.group('value') == ('b7a7b7cce64eabf224d05ed9f2b9d471')
161
+
162
+ >>> p = parse_dep('"bap-std" {= "1.0.0"}')
163
+ >>> assert p.group('name') == ('bap-std')
164
+ >>> assert p.group('version') == ('{= "1.0.0"}')
165
+ """
164
166
165
167
166
168
def parse_opam (location ):
You can’t perform that action at this time.
0 commit comments