psycopg-binary 3.2.4__cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl → 3.2.5__cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of psycopg-binary might be problematic. Click here for more details.

@@ -1,5 +1,5 @@
1
1
  """
2
- Stub representaton of the public objects exposed by the _psycopg module.
2
+ Stub representation of the public objects exposed by the _psycopg module.
3
3
 
4
4
  TODO: this should be generated by mypy's stubgen but it crashes with no
5
5
  information. Will submit a bug.
@@ -11,7 +11,7 @@ from __future__ import annotations
11
11
 
12
12
  from typing import Any, Sequence
13
13
 
14
- from psycopg import pq, abc, BaseConnection
14
+ from psycopg import BaseConnection, abc, pq
15
15
  from psycopg.rows import Row, RowMaker
16
16
  from psycopg.adapt import AdaptersMap, PyFormat
17
17
  from psycopg.pq.abc import PGcancelConn, PGconn, PGresult
@@ -0,0 +1,28 @@
1
+ """
2
+ Internal objects to support the UUID adapters.
3
+ """
4
+
5
+ # Copyright (C) 2025 The Psycopg Team
6
+
7
+ import uuid
8
+
9
+ # Re-exports
10
+ UUID = uuid.UUID
11
+ SafeUUID_unknown = uuid.SafeUUID.unknown
12
+
13
+
14
+ class _WritableUUID(UUID):
15
+ """Temporary class, with the same memory layout of UUID, but writable.
16
+
17
+ This class must have the same memory layout of the UUID class, so we can
18
+ create one, setting the `int` attribute, and changing the `__class__`,
19
+ which should be faster than calling the complex UUID.__init__ machinery.
20
+
21
+ u = _WritableUUID()
22
+ u.is_safe = ...
23
+ u.int = ...
24
+ u.__class__ = UUID
25
+ """
26
+
27
+ __slots__ = () # Give the class the same memory layout of the base clasee
28
+ __setattr__ = object.__setattr__ # make the class writable
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: psycopg-binary
3
- Version: 3.2.4
3
+ Version: 3.2.5
4
4
  Summary: PostgreSQL database adapter for Python -- C optimisation distribution
5
5
  Home-page: https://psycopg.org/psycopg3/
6
6
  Author: Daniele Varrazzo
@@ -1,25 +1,26 @@
1
- psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1
+ psycopg_binary/_psycopg.cpython-311-powerpc64le-linux-gnu.so,sha256=Dt8BzTiRC0TF4V11ySNhpWKzkxlGFyjwevZrPmWQnTo,1184945
2
2
  psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
3
- psycopg_binary/pq.cpython-311-powerpc64le-linux-gnu.so,sha256=NYG425Ot1z--uigXKIGqLoyxATf0YQiKzA41wUVErNc,595233
4
- psycopg_binary/_psycopg.cpython-311-powerpc64le-linux-gnu.so,sha256=F1XU6pN4DSnSRoastR_2GelGRYVq7t2AUeW8ziYNMDI,1184889
5
- psycopg_binary/_psycopg.pyi,sha256=czikCGEKdbZ9RkcWNmPUvI2j7mcOX6jTDLVI-5oHtaM,3239
3
+ psycopg_binary/pq.cpython-311-powerpc64le-linux-gnu.so,sha256=BDsZA1OW8SqfuDWtE-qNTYVRzr8bStG4H10_R2xRik0,595233
6
4
  psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
7
- psycopg_binary.libs/libcrypto-4b2eda48.so.3,sha256=lIPp5GvoRHINz1nvmuAQhXBwPIqpDOJnTJv3nPiZ54g,6324337
8
- psycopg_binary.libs/libgssapi_krb5-fb19b5ab.so.2.2,sha256=Wrs1jehit9TRqwOviqJF2wZCOXu4LLRaI3ooz7pYDII,533577
9
- psycopg_binary.libs/libpq-2eece0b1.so.5.17,sha256=cfKu249fzNJ5nSn0zUti1zyY4zaQSPS3Z05w0R1FyNI,661905
10
- psycopg_binary.libs/libssl-93a544bd.so.3,sha256=TgQVp9PF2HVT9dngCj0fYDG00qX3SY39vr4_NpxCkyY,1466009
11
- psycopg_binary.libs/libldap-8ad68d61.so.2.0.200,sha256=hK0ZIKcyPErG2VZJTFc4hr8PcJhnWsD93hcjc5xcrR4,738089
12
- psycopg_binary.libs/libsasl2-4a4da831.so.3.0.0,sha256=F7Na9OVKO8WQpvyPHNi_GVsjW9yh92-u6jBNBLmMEfo,266657
13
- psycopg_binary.libs/libk5crypto-c44ba9e7.so.3.1,sha256=knNHZn1p3lbcrhdMDl5ag5QF8xieItroOZIGrN8Wxq8,396033
5
+ psycopg_binary/_uuid.py,sha256=2qmCSE61jkn5o6HFqiS6o7a_YtQj19ZeogUO-4YVuG0,765
6
+ psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ psycopg_binary/_psycopg.pyi,sha256=uCDlLoK7ipWj-XdkRpR5d1ZwQBr6kn4QKywzbuphA2Q,3240
8
+ psycopg_binary-3.2.5.dist-info/WHEEL,sha256=yEOYudqit8Q_7-_BGn2EWMQxd_rG1w5ElX7OmGi9e70,153
9
+ psycopg_binary-3.2.5.dist-info/METADATA,sha256=BR5nOkAEkPBDen9zZd48XE4wn6rdQnHby9caCoPa_S0,2833
10
+ psycopg_binary-3.2.5.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
11
+ psycopg_binary-3.2.5.dist-info/RECORD,,
12
+ psycopg_binary-3.2.5.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
14
13
  psycopg_binary.libs/libkeyutils-2f698cac.so.1.5,sha256=zlftgU64pSROXJ2Yi9pvCBQLEWWygur9WxxLtFYQ310,132561
15
- psycopg_binary.libs/liblber-e7c3db22.so.2.0.200,sha256=Jjz46SirIAf5IlzbY0In-sakTWb6t6vEv3A5xmsAhO0,200217
16
- psycopg_binary.libs/libcom_err-643ef2cc.so.2.1,sha256=8fYIT6UFt0P4nOvtdWqA7hA-IZzJUBVYGJGctnDjBtw,132129
14
+ psycopg_binary.libs/libcrypto-ef866984.so.3,sha256=d46NnizW3edfN1Hz9lU0qttZJfI-DSmddFqv5FA0XC0,6324337
15
+ psycopg_binary.libs/libpq-7282108f.so.5.17,sha256=EdclCI3irgHhdHPF_5QnZDJxabNy1HlEnnBcn5Swgr0,661905
16
+ psycopg_binary.libs/liblber-db562945.so.2.0.200,sha256=_3NgDna15GzjXywqixNfB7sJRtN-JrETXQzitCuvd_I,200217
17
+ psycopg_binary.libs/libselinux-c9c55256.so.1,sha256=bMIaYVKFEhXx93h9GkDfGPUoCXmV68yByxI7_Awa7LI,333905
18
+ psycopg_binary.libs/libk5crypto-c44ba9e7.so.3.1,sha256=knNHZn1p3lbcrhdMDl5ag5QF8xieItroOZIGrN8Wxq8,396033
17
19
  psycopg_binary.libs/libkrb5-65946155.so.3.3,sha256=T7jC5L3Hk0WasqWuXL2nUBSNalkABnzBjLrqzl5mjT0,1264649
20
+ psycopg_binary.libs/libldap-95b3312a.so.2.0.200,sha256=pfx5_vIKBM8TnyO7zqyAV38riqcrfMkWmy4oV_-RK4c,738089
21
+ psycopg_binary.libs/libgssapi_krb5-fb19b5ab.so.2.2,sha256=Wrs1jehit9TRqwOviqJF2wZCOXu4LLRaI3ooz7pYDII,533577
22
+ psycopg_binary.libs/libsasl2-4a4da831.so.3.0.0,sha256=F7Na9OVKO8WQpvyPHNi_GVsjW9yh92-u6jBNBLmMEfo,266657
18
23
  psycopg_binary.libs/libkrb5support-0ab7c543.so.0.1,sha256=NSnNsjuOWCaJxdYT2DlOo2MMCQ6NY7e9sG4Qr1ICVgc,265233
19
- psycopg_binary.libs/libselinux-c9c55256.so.1,sha256=bMIaYVKFEhXx93h9GkDfGPUoCXmV68yByxI7_Awa7LI,333905
20
24
  psycopg_binary.libs/libpcre-4bd48394.so.1.2.0,sha256=jIekrIRFPtxu6wsOCXdSLa6UMzLi1CQfTx03U5Otuds,394377
21
- psycopg_binary-3.2.4.dist-info/METADATA,sha256=d-w_lJ_yBSPlftePGqfjOOil7TAvJWL_klYkLzuDw3Q,2833
22
- psycopg_binary-3.2.4.dist-info/RECORD,,
23
- psycopg_binary-3.2.4.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
24
- psycopg_binary-3.2.4.dist-info/WHEEL,sha256=yEOYudqit8Q_7-_BGn2EWMQxd_rG1w5ElX7OmGi9e70,153
25
- psycopg_binary-3.2.4.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
25
+ psycopg_binary.libs/libcom_err-643ef2cc.so.2.1,sha256=8fYIT6UFt0P4nOvtdWqA7hA-IZzJUBVYGJGctnDjBtw,132129
26
+ psycopg_binary.libs/libssl-69ca26b2.so.3,sha256=va0NiWX02V5DsXYEM_0lSJNGnNgOmVhEO9K1q_-3bB4,1466009
index a9c2f3c..1736879 100755
Binary file
index 6a3cea3..613dba6 100755
Binary file
index f2893e4..d6b47f5 100755
Binary file
index fbf0baf..f3dd1da 100755
Binary file
Binary file
Binary file