Skip to content

Commit 4013e61

Browse files
committed
Intermediate changes
commit_hash:32ce16d8158d416147fcd7231a39bd5b3e9fa50f
1 parent 3f113ee commit 4013e61

File tree

15 files changed

+430
-171
lines changed

15 files changed

+430
-171
lines changed

contrib/libs/cxxsupp/builtins/.yandex_meta/build.ym

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends '//builtin/bag.ym' %}
22

3-
{% block current_version %}20.1.1{% endblock %}
3+
{% block current_version %}20.1.2{% endblock %}
44

55
{% block current_url %}
66
https://github.com/llvm/llvm-project/releases/download/llvmorg-{{self.version().strip()}}/compiler-rt-{{self.version().strip()}}.src.tar.xz

contrib/libs/cxxsupp/builtins/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ LICENSE(
1212

1313
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
1414

15-
VERSION(20.1.1)
15+
VERSION(20.1.2)
1616

17-
ORIGINAL_SOURCE(https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.1/compiler-rt-20.1.1.src.tar.xz)
17+
ORIGINAL_SOURCE(https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.2/compiler-rt-20.1.2.src.tar.xz)
1818

1919
NO_COMPILER_WARNINGS()
2020

contrib/python/pyparsing/py3/.dist-info/METADATA

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: pyparsing
3-
Version: 3.2.1
3+
Version: 3.2.2
44
Summary: pyparsing module - Classes and methods to define and execute parsing grammars
55
Author-email: Paul McGuire <ptmcg.gm+pyparsing@gmail.com>
66
Requires-Python: >=3.9
@@ -17,6 +17,7 @@ Classifier: Programming Language :: Python :: 3.10
1717
Classifier: Programming Language :: Python :: 3.11
1818
Classifier: Programming Language :: Python :: 3.12
1919
Classifier: Programming Language :: Python :: 3.13
20+
Classifier: Programming Language :: Python :: 3.14
2021
Classifier: Programming Language :: Python :: 3 :: Only
2122
Classifier: Programming Language :: Python :: Implementation :: CPython
2223
Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -56,7 +57,7 @@ Here is a program to parse ``"Hello, World!"`` (or any greeting of the form
5657
from pyparsing import Word, alphas
5758
greet = Word(alphas) + "," + Word(alphas) + "!"
5859
hello = "Hello, World!"
59-
print(hello, "->", greet.parseString(hello))
60+
print(hello, "->", greet.parse_string(hello))
6061

6162
The program outputs the following::
6263

@@ -66,7 +67,7 @@ The Python representation of the grammar is quite readable, owing to the
6667
self-explanatory class names, and the use of '+', '|' and '^' operator
6768
definitions.
6869

69-
The parsed results returned from ``parseString()`` is a collection of type
70+
The parsed results returned from ``parse_string()`` is a collection of type
7071
``ParseResults``, which can be accessed as a
7172
nested list, a dictionary, or an object with named attributes.
7273

contrib/python/pyparsing/py3/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Here is a program to parse ``"Hello, World!"`` (or any greeting of the form
2626
from pyparsing import Word, alphas
2727
greet = Word(alphas) + "," + Word(alphas) + "!"
2828
hello = "Hello, World!"
29-
print(hello, "->", greet.parseString(hello))
29+
print(hello, "->", greet.parse_string(hello))
3030
3131
The program outputs the following::
3232

@@ -36,7 +36,7 @@ The Python representation of the grammar is quite readable, owing to the
3636
self-explanatory class names, and the use of '+', '|' and '^' operator
3737
definitions.
3838
39-
The parsed results returned from ``parseString()`` is a collection of type
39+
The parsed results returned from ``parse_string()`` is a collection of type
4040
``ParseResults``, which can be accessed as a
4141
nested list, a dictionary, or an object with named attributes.
4242

contrib/python/pyparsing/py3/pyparsing/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ def __repr__(self):
120120
return f"{__name__}.{type(self).__name__}({', '.join('{}={!r}'.format(*nv) for nv in zip(self._fields, self))})"
121121

122122

123-
__version_info__ = version_info(3, 2, 1, "final", 1)
124-
__version_time__ = "31 Dec 2024 20:41 UTC"
123+
__version_info__ = version_info(3, 2, 2, "final", 1)
124+
__version_time__ = "22 Mar 2025 22:09 UTC"
125125
__version__ = __version_info__.__version__
126126
__versionTime__ = __version_time__
127127
__author__ = "Paul McGuire <ptmcg.gm+pyparsing@gmail.com>"

contrib/python/pyparsing/py3/pyparsing/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class OnlyOnce:
2222
Note: parse action signature must include all 3 arguments.
2323
"""
2424

25-
def __init__(self, method_call: Callable[[str, int, ParseResults], Any]):
25+
def __init__(self, method_call: Callable[[str, int, ParseResults], Any]) -> None:
2626
from .core import _trim_arity
2727

2828
self.callable = _trim_arity(method_call)

0 commit comments

Comments
 (0)