Skip to content

Commit 5b24299

Browse files
author
github-actions
committed
v3.25.8.1
1 parent bc9ad92 commit 5b24299

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.4
22
Name: blpapi
3-
Version: 3.25.7.1
3+
Version: 3.25.8.1
44
Summary: Python SDK for Bloomberg BLPAPI
55
Home-page: http://www.bloomberglabs.com/api/
66
Author: Bloomberg L.P.

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 3.25.8.1:
2+
=================
3+
- Stability and performance improvements
4+
15
Version 3.25.7.1:
26
=================
37
- Stability and performance improvements

src/blpapi.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.4
22
Name: blpapi
3-
Version: 3.25.7.1
3+
Version: 3.25.8.1
44
Summary: Python SDK for Bloomberg BLPAPI
55
Home-page: http://www.bloomberglabs.com/api/
66
Author: Bloomberg L.P.

src/blpapi/correlationid.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ class CorrelationId:
4949
default :class:`CorrelationId` constructor."""
5050

5151
INT_TYPE = internals.CORRELATION_TYPE_INT
52-
"""The :class:`CorrelationId` was created from an :class:`int` or
53-
:class:`long` supplied by the user."""
52+
"""The :class:`CorrelationId` was created from an :class:`int` supplied by the user."""
5453

5554
OBJECT_TYPE = internals.CORRELATION_TYPE_POINTER
5655
"""The :class:`CorrelationId` was created from an object supplied by
@@ -83,7 +82,7 @@ def __init__(self, *argv: Any, **_kwargs: Any) -> None:
8382
r"""
8483
``CorrelationId([value[, classId=0]])`` constructs a :class:`CorrelationId`
8584
object.
86-
If ``value`` is an integer (either :class:`int` or :class:`long`) then the
85+
If ``value`` is an :class:`int` then the
8786
created :class:`CorrelationId` will have type :attr:`INT_TYPE`. Otherwise, it
8887
will have type :attr:`OBJECT_TYPE`.
8988
If no arguments are specified, then the type will be :attr:`UNSET_TYPE`.

src/blpapi/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
from . import internals
66

7-
__version__ = "3.25.7.1"
8-
__expected_cpp_sdk_version__ = "3.25.7"
7+
__version__ = "3.25.8.1"
8+
__expected_cpp_sdk_version__ = "3.25.8"
99

1010

1111
def print_version() -> None:

0 commit comments

Comments
 (0)