|
4 | 4 | """
|
5 | 5 | plusminus
|
6 | 6 |
|
7 |
| -plusminus is a module that builds on the pyparsing infixNotation helper method to build easy-to-code and easy-to-use |
8 |
| -parsers for parsing and evaluating infix arithmetic expressions. plusminus's ArithmeticParser class includes |
| 7 | +plusminus is a module that builds on the pyparsing infix_notation helper method to build easy-to-code and easy-to-use |
| 8 | +parsers for parsing and evaluating infix arithmetic expressions. plusminus's BaseArithmeticParser class includes |
9 | 9 | separate parse and evaluate methods, handling operator precedence, override with parentheses, presence or absence of
|
10 | 10 | whitespace, built-in functions, and pre-defined and user-defined variables, functions, and operators.
|
11 | 11 |
|
12 |
| -Copyright 2020-2021, by Paul McGuire |
| 12 | +Copyright 2020-2022, by Paul McGuire |
13 | 13 |
|
14 | 14 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
15 | 15 | documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
|
|
57 | 57 | DEFAULT_BASE_FUNCTION_MAP""".split()
|
58 | 58 |
|
59 | 59 | VersionInfo = namedtuple("VersionInfo", "major minor micro releaselevel serial")
|
60 |
| -__version_info__ = VersionInfo(0, 8, 0, "final", 0) |
| 60 | +__version_info__ = VersionInfo(0, 7, 0, "final", 0) |
61 | 61 | __version__ = ".".join(map(str, __version_info__[:3]))
|
62 | 62 |
|
63 | 63 | # increase recursion limit if not already modified
|
|
0 commit comments