Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix test bugs | ptmcg | 2021-08-20 | 1 | -9/+11 | |
| | ||||||
* | Add identchars and identbodychars symbols to make it easier to construct ↵ | ptmcg | 2021-08-19 | 1 | -0/+47 | |
| | | | | identifiers | |||||
* | Fix f-string 3.6 compat bug in test_unit.py; rename __versionTime__ to ↵ | ptmcg | 2021-08-16 | 1 | -3/+5 | |
| | | | | __version_time__; code cleanups | |||||
* | Additional unit tests for IndentedBlock, with bad indented code and indented ↵ | ptmcg | 2021-08-15 | 1 | -0/+25 | |
| | | | | code that skips unindent levels | |||||
* | Fixed bug in QuotedString class when the escaped quote string is not a ↵ | Paul McGuire | 2021-08-15 | 1 | -21/+32 | |
| | | | | repeated character; reworked regex construction in QuotedString class (Issue #263) | |||||
* | Fix bug in Located class when used with a results name. (Issue #294) | ptmcg | 2021-08-14 | 1 | -0/+18 | |
| | ||||||
* | It is to black | ptmcg | 2021-08-14 | 1 | -5/+15 | |
| | ||||||
* | Fix unit test that enables/disables memoization, to not interfere with ↵ | ptmcg | 2021-08-14 | 1 | -1/+26 | |
| | | | | test-level settings; add flag to enable verbose tracebacks for unit testing | |||||
* | Add support for Suppress(...) to suppress the skipped text | ptmcg | 2021-08-12 | 1 | -29/+38 | |
| | ||||||
* | More informative exception messages | ptmcg | 2021-08-09 | 1 | -9/+9 | |
| | ||||||
* | Sweep code for calls using legacy names | ptmcg | 2021-08-08 | 1 | -43/+43 | |
| | ||||||
* | Add PEP-8 naming, with compatibility synonyms | ptmcg | 2021-08-07 | 2 | -2/+3 | |
| | ||||||
* | Minor code cleanups | ptmcg | 2021-08-07 | 2 | -56/+69 | |
| | ||||||
* | Renumber test classes | ptmcg | 2021-08-01 | 1 | -21/+21 | |
| | ||||||
* | Disable SQL parse test when running with LR enabled (SQL parser uses packrat) | ptmcg | 2021-07-30 | 1 | -6/+10 | |
| | ||||||
* | Merge branch 'feature/left_recurse_Medeiros_etal' | ptmcg | 2021-07-30 | 1 | -20/+215 | |
|\ | ||||||
| * | left recursion memo size may be limited | Max Fischer | 2021-06-28 | 1 | -2/+24 | |
| | | ||||||
| * | testing memo switches | Max Fischer | 2021-06-28 | 1 | -11/+16 | |
| | | ||||||
| * | properly setting names in tests | Max Fischer | 2021-06-27 | 1 | -12/+12 | |
| | | ||||||
| * | cleanup | Max Fischer | 2021-06-26 | 1 | -17/+17 | |
| | | ||||||
| * | adjusted example with ambiguous failure case | Max Fischer | 2021-06-23 | 1 | -1/+1 | |
| | | ||||||
| * | explicitly testing tests for LR compatibility | Max Fischer | 2021-06-22 | 1 | -9/+7 | |
| | | ||||||
| * | naive test for existing suite | Max Fischer | 2021-06-22 | 1 | -0/+20 | |
| | | ||||||
| * | renamed bounded to left recursion | Max Fischer | 2021-06-21 | 1 | -1/+1 | |
| | | ||||||
| * | added tests for repetition rules | Max Fischer | 2021-06-21 | 1 | -0/+27 | |
| | | ||||||
| * | added base case to unittest | Max Fischer | 2021-06-20 | 1 | -3/+3 | |
| | | ||||||
| * | fixed test typos | Max Fischer | 2021-06-20 | 1 | -2/+2 | |
| | | ||||||
| * | unittest for empty and non-peg clauses | Max Fischer | 2021-06-20 | 1 | -0/+15 | |
| | | ||||||
| * | fixed test typo | Max Fischer | 2021-06-20 | 1 | -1/+1 | |
| | | ||||||
| * | added math example | Max Fischer | 2021-06-20 | 1 | -0/+46 | |
| | | ||||||
| * | tests for associativity and nesting | Max Fischer | 2021-06-20 | 1 | -1/+33 | |
| | | ||||||
| * | basic LR unit test | Max Fischer | 2021-06-20 | 1 | -0/+30 | |
| | | ||||||
* | | Add allowTrailingDelim to delimitedList helper (#285) | Kazantcev Andrey | 2021-07-29 | 1 | -0/+14 | |
|/ | | | Merge pull request #285 - Add allowTrailingDelim to delimitedList helper | |||||
* | Fix misc. documentation typos (#280) | luzpaz | 2021-05-14 | 2 | -5/+5 | |
| | | | Found via `codespell -q 3 -L ba,fourty,halp,inout,strng` | |||||
* | Deprecate `locatedExpr` in favor of new `Located` class | ptmcg | 2020-12-24 | 1 | -6/+49 | |
| | ||||||
* | Add IndentedBlock class; made vertical keyword arg more visible when ↵pyparsing_3.0.0b1 | ptmcg | 2020-11-02 | 1 | -15/+64 | |
| | | | | creating railroad diags; changed create_diagram from monkeypatch to included method on ParserElement; better debug exception if Dict is constructed with non-Group expression | |||||
* | ParseResults.List class to support returning an actual list from a parse ↵ | ptmcg | 2020-10-24 | 2 | -536/+405 | |
| | | | | action, plus aslist and asdict args to Group and Dict classes to emit native Python types instead of ParseResults; also update repr() output of ParseResults to include the type name instead of just a bare tuple. | |||||
* | Issue #244, fixed debug output to indicate correct parse location; updated ↵ | Paul McGuire | 2020-10-11 | 1 | -8/+72 | |
| | | | | setDebug output to include current text line and parse location | |||||
* | Fixed bugs in Each with ZeroOrMore and OneOrMore (first matched element ↵ | ptmcg | 2020-10-11 | 1 | -0/+35 | |
| | | | | enclosed in extra nesting level; results names not maintained; did not handle mix with required expressions) | |||||
* | Convert SyntaxWarnings to ValueError and TypeError exceptions; change ↵ | Paul McGuire | 2020-08-19 | 1 | -430/+311 | |
| | | | | diagnostics to an enum, and add enable_diag(), disable_diag() and enable_all_warnings() methods; clean up pyparsing imports in test_unit.py | |||||
* | Add '*' markers to debug output to indicate cached parse expression ↵ | ptmcg | 2020-08-18 | 1 | -7/+80 | |
| | | | | try/pass/fail events (which were previously omitted from debugging output) | |||||
* | Remove identChars override from Keyword.copy (#233) | jgrey4296 | 2020-08-16 | 1 | -0/+5 | |
| | ||||||
* | Better display of single-character Words | Paul McGuire | 2020-07-30 | 1 | -0/+4 | |
| | ||||||
* | Add size spec to default Word repr output | Paul McGuire | 2020-07-30 | 1 | -12/+28 | |
| | ||||||
* | Docstrings cleanup; add 'encoding' argument to parseFile; additional unit ↵ | ptmcg | 2020-07-08 | 1 | -0/+48 | |
| | | | | tests to improve ParseResults coverage | |||||
* | infixNotation unit tests to address missing coverage and features; rename ↵ | ptmcg | 2020-07-07 | 1 | -4/+50 | |
| | | | | infixNotation tests to meaningful names | |||||
* | Fixed traceback trimming, and added ParserElement.verbose_traceback ↵ | Paul McGuire | 2020-06-28 | 1 | -0/+2 | |
| | | | | save/restore to reset_pyparsing_context() | |||||
* | Additional unit testspyparsing_3.0.0a2 | Paul McGuire | 2020-06-27 | 1 | -5/+91 | |
| | ||||||
* | Assert packrat not enabled in base test case; log packrat status and cache ↵ | Paul McGuire | 2020-06-27 | 1 | -0/+22 | |
| | | | | type in all cases | |||||
* | Blacken test_examples.py | ptmcg | 2020-06-27 | 1 | -1/+1 | |
| |