Internals

Documentation for the internals of CodeSearch. The content on this page is not a part of the public API and isn't intended for most users. It's all subject to change in non-breaking versions.

CodeSearch.prepare_wildcardsFunction
prepare_wildcards(str) -> (new_str, wildcard_str)

Replace * with an identifier that does not occur in str (preferrably "wildcard") and return the new string and the identifier. * may be escaped, and the new identifier is padded with spaces only when necessary to prevent it from parsing together with characters before or after it.

source