Change error handling to use assert as per Araq's comment

This commit is contained in:
Chris Heller
2016-12-21 12:15:33 -08:00
parent 40d034b7e3
commit 80a727f1ce

View File

@@ -808,10 +808,7 @@ proc split*(s: string, sep: string, maxsplit: int = -1): seq[string] {.noSideEff
##
## Substrings are separated by the string `sep`. This is a wrapper around the
## `split iterator <#split.i,string,string>`_.
##
## If `sep` is an empty string, `ValueError` is raised.
if sep.len == 0:
raise newException(ValueError, "invalid separator: empty string not allowed")
assert(sep.len > 0)
accumulateResult(split(s, sep, maxsplit))