summaryrefslogtreecommitdiff
path: root/pyparsing/__init__.py
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2021-08-01 23:36:03 -0500
committerptmcg <ptmcg@austin.rr.com>2021-08-01 23:36:03 -0500
commit4987cbfc3ce2444d05d7bcd606fbe2647906ce74 (patch)
treee6827d61b6399e3c3042e0c848bf7621a2f6290d /pyparsing/__init__.py
parentcc26f23b799345f0974918db839006133aaed67c (diff)
downloadpyparsing-git-pep8_naming.tar.gz
Successful rename in common.py with module level and class level names; blackened changespep8_naming
Diffstat (limited to 'pyparsing/__init__.py')
-rw-r--r--pyparsing/__init__.py73
1 files changed, 58 insertions, 15 deletions
diff --git a/pyparsing/__init__.py b/pyparsing/__init__.py
index 41a12db..0c27ea6 100644
--- a/pyparsing/__init__.py
+++ b/pyparsing/__init__.py
@@ -161,6 +161,7 @@ __all__ = [
"NotAny",
"OneOrMore",
"OnlyOnce",
+ "OpAssoc",
"Optional",
"Or",
"ParseBaseException",
@@ -189,10 +190,66 @@ __all__ = [
"alphanums",
"alphas",
"alphas8bit",
+ "any_close_tag",
+ "any_open_tag",
+ "c_style_comment",
+ "col",
+ "common_html_entity",
+ "counted_array",
+ "cpp_style_comment",
+ "dbl_quoted_string",
+ "dbl_slash_comment",
+ "delimited_list",
+ "dict_of",
+ "empty",
+ "hexnums",
+ "html_comment",
+ "java_style_comment",
+ "line",
+ "line_end",
+ "line_start",
+ "lineno",
+ "make_html_tags",
+ "make_xml_tags",
+ "match_only_at_col",
+ "match_previous_expr",
+ "match_previous_literal",
+ "nested_expr",
+ "null_debug_action",
+ "nums",
+ "one_of",
+ "printables",
+ "punc8bit",
+ "python_style_comment",
+ "quoted_string",
+ "remove_quotes",
+ "replace_with",
+ "replace_html_entity",
+ "rest_of_line",
+ "sgl_quoted_string",
+ "srange",
+ "string_end",
+ "string_start",
+ "trace_parse_action",
+ "unicode_string",
+ "with_attribute",
+ "indentedBlock",
+ "original_text_for",
+ "ungroup",
+ "infix_notation",
+ "locatedExpr",
+ "with_class",
+ "CloseMatch",
+ "token_map",
+ "pyparsing_common",
+ "pyparsing_unicode",
+ "unicode_set",
+ "condition_as_parse_action",
+ "pyparsing_test",
+ # pre-PEP8 compatibility names
"anyCloseTag",
"anyOpenTag",
"cStyleComment",
- "col",
"commonHTMLEntity",
"countedArray",
"cppStyleComment",
@@ -200,14 +257,10 @@ __all__ = [
"dblSlashComment",
"delimitedList",
"dictOf",
- "empty",
- "hexnums",
"htmlComment",
"javaStyleComment",
- "line",
"lineEnd",
"lineStart",
- "lineno",
"makeHTMLTags",
"makeXMLTags",
"matchOnlyAtCol",
@@ -215,11 +268,8 @@ __all__ = [
"matchPreviousLiteral",
"nestedExpr",
"nullDebugAction",
- "nums",
"oneOf",
"opAssoc",
- "printables",
- "punc8bit",
"pythonStyleComment",
"quotedString",
"removeQuotes",
@@ -227,7 +277,6 @@ __all__ = [
"replaceWith",
"restOfLine",
"sglQuotedString",
- "srange",
"stringEnd",
"stringStart",
"traceParseAction",
@@ -235,15 +284,9 @@ __all__ = [
"withAttribute",
"indentedBlock",
"originalTextFor",
- "ungroup",
"infixNotation",
"locatedExpr",
"withClass",
- "CloseMatch",
"tokenMap",
- "pyparsing_common",
- "pyparsing_unicode",
- "unicode_set",
"conditionAsParseAction",
- "pyparsing_test",
]