You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HDFStore.contains takes the node name and uses it as a pattern to search for. That crashes if the name of the node isn't a valid regex, for example "node1(()" and doesn't function correctly if the node name is a valid regex but doesn't necessarily match itself.
The text was updated successfully, but these errors were encountered:
I'm caching values w/ keys based on function calls, so perfectly valid names are 'foo(3)' or maybe 'bar("(()")' if someone ever decides to pass a string "(()" into the function. I can work around using hashes, etc but this makes it easy to follow.
HDFStore.contains takes the node name and uses it as a pattern to search for. That crashes if the name of the node isn't a valid regex, for example "node1(()" and doesn't function correctly if the node name is a valid regex but doesn't necessarily match itself.
The text was updated successfully, but these errors were encountered: