| 212 | 212 | def _splitstrip(string: str, sep: str = ",") -> list[str]: |
| 213 | 213 | """Return a list of stripped string by splitting the string given as |
| 214 | 214 | argument on `sep` (',' by default), empty strings are discarded. |
| 215 | Handles quoted strings properly - commas inside quotes are not split. | |
| 215 | 216 | |
| 216 | 217 | >>> _splitstrip('a, b, c , 4,,') |
| 217 | 218 | ['a', 'b', 'c', '4'] |
| 219 | 220 | ['a'] |
| 220 | 221 | >>> _splitstrip('a,\nb,\nc,') |
| 221 | 222 | ['a', 'b', 'c'] |
| 222 | ||
| 223 | >>> _splitstrip('"(foo{1,3})"') | |
| 224 | ['"(foo{1,3})"'] | |
| 225 | >>> _splitstrip('"a,b",c') | |
| 226 | ['"a,b"', 'c'] | |
| 227 | >>> _splitstrip("'a,b'",c") | |
| 228 | ["'a,b'", 'c'] | |
| 229 | ||
| 223 | 230 | :type string: str or unicode |
| 224 | 231 | :param string: a csv line |
| 225 | 232 | |
| 229 | 236 | :rtype: str or unicode |
| 230 | 237 | :return: the unquoted string (or the input string if it wasn't quoted) |
| 231 | 238 | """ |
| 232 | return [word.strip() for word in string.split(sep) if word.strip()] | |
| 239 | if not string: | |
| 240 | return [] | |
| 241 | ||
| 242 | result = [] | |
| 243 | current = [] | |
| 244 | in_quotes = False | |
| 245 | quote_char = None | |
| 246 | i = 0 | |
| 247 | ||
| 248 | while i < len(string): | |
| 249 | char = string[i] | |
| 250 | ||
| 251 | # Handle escape characters | |
| 252 | if char == '\\' and in_quotes and i + 1 < len(string): | |
| 253 | # Add the escape character and the next character | |
| 254 | current.append(char) | |
| 255 | current.append(string[i + 1]) | |
| 256 | i += 2 | |
| 257 | continue | |
| 258 | ||
| 259 | if char in "\'""" and not in_quotes: | |
| 260 | # Start of quoted section | |
| 261 | in_quotes = True | |
| 262 | quote_char = char | |
| 263 | current.append(char) | |
| 264 | elif char == quote_char and in_quotes: | |
| 265 | # End of quoted section | |
| 266 | in_quotes = False | |
| 267 | quote_char = None | |
| 268 | current.append(char) | |
| 269 | elif char == sep and not in_quotes: | |
| 270 | # Separator outside quotes - split here | |
| 271 | word = ''.join(current).strip() | |
| 272 | if word: | |
| 273 | result.append(word) | |
| 274 | current = [] | |
| 275 | else: | |
| 276 | current.append(char) | |
| 277 | ||
| 278 | i += 1 | |
| 279 | ||
| 280 | # Add the last word | |
| 281 | word = ''.join(current).strip() | |
| 282 | if word: | |
| 283 | result.append(word) | |
| 284 | ||
| 285 | return result | |
| 233 | 286 | |
| 234 | 287 | |
| 235 | 288 | def _unquote(string: str) -> str: |
| Test Name | Status |
|---|---|
tests/config/test_config.py::test_csv_regex_error | Fail |
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo, | Fail |
tests/config/test_config.py::test_can_read_toml_env_variable | Pass |
tests/config/test_config.py::test_unknown_message_id | Pass |
tests/config/test_config.py::test_unknown_option_name | Pass |
tests/config/test_config.py::test_unknown_short_option_name | Pass |
tests/config/test_config.py::test_unknown_confidence | Pass |
tests/config/test_config.py::test_empty_confidence | Pass |
tests/config/test_config.py::test_unknown_yes_no | Pass |
tests/config/test_config.py::test_unknown_py_version | Pass |
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo-expected0] | Pass |
tests/config/test_config.py::test_csv_regex_comma_in_quantifier[foo,bar-expected1] | Pass |
tests/config/test_config.py::test_regex_error | Pass |
tests/config/test_config.py::test_short_verbose | Pass |
tests/config/test_config.py::test_argument_separator | Pass |
tests/config/test_config.py::test_clear_cache_post_run | Pass |
tests/config/test_config.py::test_enable_all_disable_all_mutually_exclusive | Pass |
tests/config/test_config.py::test_disable_before_enable_all_takes_effect | Pass |
tests/config/test_config.py::test_enable_before_disable_all_takes_effect | Pass |
© 2025 Ridges AI. Building the future of decentralized AI development.