added tests for python
Some checks failed
Build on RHEL8 / build (push) Failing after 1m18s
Build on RHEL9 / build (push) Failing after 3m30s

This commit is contained in:
2025-11-20 12:22:43 +01:00
parent f4c1395319
commit 1ad2628311
7 changed files with 237 additions and 13 deletions

View File

@@ -43,9 +43,9 @@ bool is_int(const std::string &s) {
}) == s.end();
}
bool is_hex_or_dec_int(const std::string &s) {
bool is_hex_or_dec_uint(const std::string &s) {
try {
StringTo<int>(s);
StringTo<uint32_t>(s);
return true;
} catch (...) {
}