# HG changeset patch # User František Kučera # Date 1553958882 -3600 # Node ID 940bd8320e8289c05210dc332bcc95f2d4624061 # Parent b94ed3444d80c687d9b7201931ab5c92848d6196 fix typo: Hadler → Handler diff -r b94ed3444d80 -r 940bd8320e82 src/PythonHandler.h --- a/src/PythonHandler.h Wed Feb 20 11:30:50 2019 +0100 +++ b/src/PythonHandler.h Sat Mar 30 16:14:42 2019 +0100 @@ -46,7 +46,7 @@ using namespace relpipe::reader; using namespace relpipe::reader::handlers; -class PythonHandler : public RelationalReaderStringHadler { +class PythonHandler : public RelationalReaderStringHandler { private: const wregex ATTRIBUTE_NAMES_ALLOWED = wregex(L"[a-zA-Z0-9_]+"); const wregex ATTRIBUTE_NAMES_DISALLOWED = wregex(L"WHERE|[0-9_].*|False|None|True|and|as|assert|break|class|continue|def|del|elif|else|except|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|raise|return|try|while|with|yield"); // Python keywords from: import keyword; keyword.kwlist