d0398f62f0
This reverts commit 62c3e4ab9c
.
Needs more work, see comments about `_regex_free` errors in #70447.
17 lines
235 B
Python
17 lines
235 B
Python
def can_build(env, platform):
|
|
return not env["arch"].startswith("rv")
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"RegEx",
|
|
"RegExMatch",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|