We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44dbcc5 commit d3be2bfCopy full SHA for d3be2bf
docs/history.rst
@@ -8,6 +8,7 @@ History and release notes
8
----------------
9
10
* Dropped support for Python < 3.6
11
+* Added :meth:`Parsy.until`. Thanks `@mcdeoliveira <https://github.com/mcdeoliveira>`_!
12
13
1.4.0 - 2021-11-15
14
------------------
docs/ref/methods_and_combinators.rst
@@ -128,6 +128,7 @@ can be used and manipulated as below.
128
>>> string('A').until(string('BC'), consume_other=True).parse('AAABC')
129
['A', 'A', 'A', 'BC']
130
131
+ .. versionadded:: 2.0
132
133
.. method:: optional()
134
0 commit comments