Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: abp/filters/rpy.py

Issue 29988581: Issue 7230 - python-abp line2dict vectorization (Closed) Base URL: https://hg.adblockplus.org/python-abp/
Patch Set: Created Jan. 24, 2019, 3:37 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.rst ('k') | tests/test_rpy.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is part of Adblock Plus <https://adblockplus.org/>, 1 # This file is part of Adblock Plus <https://adblockplus.org/>,
2 # Copyright (C) 2006-present eyeo GmbH 2 # Copyright (C) 2006-present eyeo GmbH
3 # 3 #
4 # Adblock Plus is free software: you can redistribute it and/or modify 4 # Adblock Plus is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License version 3 as 5 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation. 6 # published by the Free Software Foundation.
7 # 7 #
8 # Adblock Plus is distributed in the hope that it will be useful, 8 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 Parsing mode (see `abp.filters.parser.parse_line`). 86 Parsing mode (see `abp.filters.parser.parse_line`).
87 87
88 Returns 88 Returns
89 ------- 89 -------
90 dict 90 dict
91 With the parsing results and all strings converted to utf8 byte 91 With the parsing results and all strings converted to utf8 byte
92 strings. 92 strings.
93 93
94 """ 94 """
95 return strings2utf8(tuple2dict(parse_line(text, mode))) 95 return strings2utf8(tuple2dict(parse_line(text, mode)))
96
97
98 def lines2dict(string_list, mode='start'):
99 """Convert a list of filterlist strings to a dictionary.
100
101 All strings in the output dictionary will be UTF8 byte strings. This is
102 necessary to prevent unicode encoding errors in rPython conversion layer.
103
104 Parameters
105 ----------
106 string_list: iterable of str
107 Each string in the list can be a header, metadata, empty line,
108 include instruction, or filter.
109 mode: str
110 Parsing mode. Note: The default is 'start' in case any of the filters
Vasily Kuznetsov 2019/01/24 13:27:59 I think the default should be 'body'. The data tea
rhowell 2019/01/25 00:30:07 Done.
111 are a header or metadata. For more information, see
112 `abp.filters.parser.parse_line`
113
114 Returns
115 -------
116 dict
Vasily Kuznetsov 2019/01/24 13:27:59 If I understand it right, the output should be a l
rhowell 2019/01/25 00:30:07 Done.
117 With the parsing results and all strings converted to utf8 byte
118 strings.
119
120 """
121 result = {}
122 for string in string_list:
123 result[string] = line2dict(string, mode)
124 return result
OLDNEW
« no previous file with comments | « README.rst ('k') | tests/test_rpy.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld