psycopg-binary 3.2.3__cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl → 3.2.5__cp310-cp310-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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: psycopg-binary
3
- Version: 3.2.3
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.libs/libssl-15bd2f32.so.3,sha256=_z1AVxZwEMUswD2dYvD-XeTVqewq2cryy6a2zFzyzkA,1531417
2
- psycopg_binary.libs/libpq-49b9761d.so.5.17,sha256=mM1sMp73HOzUqAKiomTG7N6OLs5afLnFGsO_Nrw5GJA,661905
1
+ psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
2
+ psycopg_binary/pq.cpython-310-powerpc64le-linux-gnu.so,sha256=T_TMUjE2Rqqg9Cp3DRFkQHNqmj8IvdlGfGu-pvvmX9M,595321
3
+ psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
4
+ psycopg_binary/_uuid.py,sha256=2qmCSE61jkn5o6HFqiS6o7a_YtQj19ZeogUO-4YVuG0,765
5
+ psycopg_binary/_psycopg.cpython-310-powerpc64le-linux-gnu.so,sha256=hkDGISPfSgKtgrKkL3klANx7uzd69zJN90hA8QBuN2I,1185009
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=SnVphCOT8ubwBwNXo6ILDhUYrHSCoIK1N2rti8jpKOg,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
3
13
  psycopg_binary.libs/libkeyutils-2f698cac.so.1.5,sha256=zlftgU64pSROXJ2Yi9pvCBQLEWWygur9WxxLtFYQ310,132561
4
- psycopg_binary.libs/libcom_err-643ef2cc.so.2.1,sha256=8fYIT6UFt0P4nOvtdWqA7hA-IZzJUBVYGJGctnDjBtw,132129
5
- psycopg_binary.libs/libkrb5-65946155.so.3.3,sha256=T7jC5L3Hk0WasqWuXL2nUBSNalkABnzBjLrqzl5mjT0,1264649
14
+ psycopg_binary.libs/libpq-7282108f.so.5.17,sha256=X84NGEbeqSFSg0CkfE1QlQCJjeRR_2zc30QQiCmvyGo,661905
15
+ psycopg_binary.libs/liblber-18913f2f.so.2.0.200,sha256=W-fJMX9QJ5hzlrUcwaMqy377Hd-7f8o1iI9ByBhYAw0,200217
16
+ psycopg_binary.libs/libldap-482c559c.so.2.0.200,sha256=SSQOaJQOo1PbQXmE3LMS_YFhJfjJxcZUQpyOrViL54Q,738089
6
17
  psycopg_binary.libs/libselinux-c9c55256.so.1,sha256=bMIaYVKFEhXx93h9GkDfGPUoCXmV68yByxI7_Awa7LI,333905
18
+ psycopg_binary.libs/libcrypto-e52d0fb2.so.3,sha256=mR3-q_SRS8f1uMYtN1-YV_7_eFLFG1Twe1R0N45RzQ8,6324337
19
+ psycopg_binary.libs/libk5crypto-c44ba9e7.so.3.1,sha256=knNHZn1p3lbcrhdMDl5ag5QF8xieItroOZIGrN8Wxq8,396033
20
+ psycopg_binary.libs/libkrb5-65946155.so.3.3,sha256=T7jC5L3Hk0WasqWuXL2nUBSNalkABnzBjLrqzl5mjT0,1264649
7
21
  psycopg_binary.libs/libgssapi_krb5-fb19b5ab.so.2.2,sha256=Wrs1jehit9TRqwOviqJF2wZCOXu4LLRaI3ooz7pYDII,533577
8
22
  psycopg_binary.libs/libsasl2-4a4da831.so.3.0.0,sha256=F7Na9OVKO8WQpvyPHNi_GVsjW9yh92-u6jBNBLmMEfo,266657
9
- psycopg_binary.libs/libpcre-4bd48394.so.1.2.0,sha256=jIekrIRFPtxu6wsOCXdSLa6UMzLi1CQfTx03U5Otuds,394377
10
- psycopg_binary.libs/liblber-79a9093c.so.2.0.200,sha256=x3uf_y_LeZhxlspc99-Quklz84ARtfIUerjIuNj9jVY,200217
11
- psycopg_binary.libs/libldap-dcfb1b14.so.2.0.200,sha256=koCzR-yioJOYnM6HskD7JMeatdNacA23ZGfb4t56YSU,738089
12
- psycopg_binary.libs/libk5crypto-c44ba9e7.so.3.1,sha256=knNHZn1p3lbcrhdMDl5ag5QF8xieItroOZIGrN8Wxq8,396033
13
- psycopg_binary.libs/libcrypto-0901ace4.so.3,sha256=eCd5fsabhWycyEmJYFny78XxKQyPEwDJt2dX-5UF-Ck,6056777
14
23
  psycopg_binary.libs/libkrb5support-0ab7c543.so.0.1,sha256=NSnNsjuOWCaJxdYT2DlOo2MMCQ6NY7e9sG4Qr1ICVgc,265233
15
- psycopg_binary/pq.cpython-310-powerpc64le-linux-gnu.so,sha256=CTBTfjf7om2DnEzeP4aspZ_sN8QD_Jh9y3VJouJwnYc,595321
16
- psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
17
- psycopg_binary/_psycopg.cpython-310-powerpc64le-linux-gnu.so,sha256=z6PCLT0JSgqV7orb3nyj6wL00DpK1SGOhWOZTINd8mg,1184929
18
- psycopg_binary/_psycopg.pyi,sha256=czikCGEKdbZ9RkcWNmPUvI2j7mcOX6jTDLVI-5oHtaM,3239
19
- psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
20
- psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- psycopg_binary-3.2.3.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
22
- psycopg_binary-3.2.3.dist-info/METADATA,sha256=OhEqhwY0WDF7tstNcIAxqTocz5MMmbfUuTIVgdKEdeI,2833
23
- psycopg_binary-3.2.3.dist-info/RECORD,,
24
- psycopg_binary-3.2.3.dist-info/WHEEL,sha256=aynqJ0gmzGabUyLAN3vi067b2SZn8UwHSv8nuFivCkw,153
25
- psycopg_binary-3.2.3.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
24
+ psycopg_binary.libs/libpcre-4bd48394.so.1.2.0,sha256=jIekrIRFPtxu6wsOCXdSLa6UMzLi1CQfTx03U5Otuds,394377
25
+ psycopg_binary.libs/libcom_err-643ef2cc.so.2.1,sha256=8fYIT6UFt0P4nOvtdWqA7hA-IZzJUBVYGJGctnDjBtw,132129
26
+ psycopg_binary.libs/libssl-69ca26b2.so.3,sha256=VjCYX5CD7quCg0hbaVZlt3kOY4wdvj6-WCZ97_gd6G8,1466009
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-manylinux_2_17_ppc64le
5
5
  Tag: cp310-cp310-manylinux2014_ppc64le
index 88fe5c8..937586f 100755
Binary file
index eab4ac0..e44fb9c 100755
Binary file
index 0cfa55d..1a92e74 100755
Binary file
index b7b9613..388ccb3 100755
Binary file
Binary file
Binary file