psycopg-binary 3.2.4__cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl → 3.2.5__cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.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
2
- psycopg_binary/pq.cpython-311-i386-linux-gnu.so,sha256=KITKsibyGViSrecw7xaEGvsjUkEvAYlR3k1DgvWSUQA,431877
3
1
  psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
4
- psycopg_binary/_psycopg.cpython-311-i386-linux-gnu.so,sha256=X_42Dlwsf9IToxhHpwUQ9NfAp-1cnLo5n7DxqvVenS8,910309
5
- psycopg_binary/_psycopg.pyi,sha256=czikCGEKdbZ9RkcWNmPUvI2j7mcOX6jTDLVI-5oHtaM,3239
2
+ psycopg_binary/_psycopg.cpython-311-i386-linux-gnu.so,sha256=Hz1ejP8b9Nijq2f0zbyddx6-N6KaA2-uoTTDWbvgIwk,930893
6
3
  psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
7
- psycopg_binary.libs/libselinux-c9aa910a.so.1,sha256=OMp__lUrTJr2L366NzCBMyDhr-yvvTAIz84EU6izNLY,174285
8
- psycopg_binary.libs/libcom_err-f788d215.so.2.1,sha256=Fki3tZFCU7-5L6RsP8rd5sIQoYNqvdkU70t1-Oe36P8,17505
9
- psycopg_binary.libs/libpq-cabc70b4.so.5.17,sha256=ZNOeudqb02VnyfEzfrK9VEmD3aBxtVvEEkdcxTN5qfg,399825
4
+ psycopg_binary/_uuid.py,sha256=2qmCSE61jkn5o6HFqiS6o7a_YtQj19ZeogUO-4YVuG0,765
5
+ psycopg_binary/pq.cpython-311-i386-linux-gnu.so,sha256=N6LIX0-rvEYyt3yd-LXJlkF-dQ-koaYfTC6vU1d8Ro4,435973
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=xpdt3sGaitba0v1r8FmCwmj5zqtL6_J8Q5_6KgxwJZQ,147
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
13
+ psycopg_binary.libs/libkeyutils-a0133cb5.so.1.5,sha256=SDv3BRb3nl00hAdYv9futpzbng9z7NfcMVzMQuH510A,17913
14
+ psycopg_binary.libs/libpq-28b25d81.so.5.17,sha256=AkksazEOQuwVlf_BWEPS_epkOq3cQxEYMQgYpP_qlXQ,399825
15
+ psycopg_binary.libs/libldap-1453bbde.so.2.0.200,sha256=eShvrKk94oQbpwkxTA13uudyo8AaJoH0__QsXd25qSo,488321
16
+ psycopg_binary.libs/libk5crypto-19d2ee81.so.3.1,sha256=qrh0ef6mWOd17_8G1D4ZZscjsq2wg_yQFTI6QvXeflw,224041
10
17
  psycopg_binary.libs/libpcre-863f8bd5.so.1.2.0,sha256=jub7lqdF4RO-i4dR8cHXGRAOypOORyBbY-RhvZRKYWc,415013
11
- psycopg_binary.libs/libgssapi_krb5-a7735118.so.2.2,sha256=kMLH241hstHxwTXgmts99Nli2zQgoIT4BoIhxdQRugY,332945
12
18
  psycopg_binary.libs/libkrb5support-ff900cbb.so.0.1,sha256=Y7zRKOs_S8BskJeRb1JxjKmkY5rK7bKjpf67PqH8kSc,72789
13
- psycopg_binary.libs/libcrypto-841dda01.so.3,sha256=Zj0UtgSS9PkGb5jD3bl2BoKTTa9En1UIg8l8oattHU0,5304489
14
- psycopg_binary.libs/liblber-cdc18f40.so.2.0.200,sha256=mt0EpoOimvCGR2EOz-JBdQ6dDfmn6_ytR1Vji14eo6E,65069
15
- psycopg_binary.libs/libldap-b38ead6f.so.2.0.200,sha256=ra5n890ZByoqT_Azw05pe_RRlyNay0Mx7nIOOrrilkY,488321
16
- psycopg_binary.libs/libk5crypto-19d2ee81.so.3.1,sha256=qrh0ef6mWOd17_8G1D4ZZscjsq2wg_yQFTI6QvXeflw,224041
19
+ psycopg_binary.libs/libcom_err-f788d215.so.2.1,sha256=Fki3tZFCU7-5L6RsP8rd5sIQoYNqvdkU70t1-Oe36P8,17505
20
+ psycopg_binary.libs/libgssapi_krb5-a7735118.so.2.2,sha256=kMLH241hstHxwTXgmts99Nli2zQgoIT4BoIhxdQRugY,332945
21
+ psycopg_binary.libs/libselinux-c9aa910a.so.1,sha256=OMp__lUrTJr2L366NzCBMyDhr-yvvTAIz84EU6izNLY,174285
17
22
  psycopg_binary.libs/libsasl2-8b848636.so.3.0.0,sha256=qP2J3ol-lyvnh9LpAi2NcrqMSoyXXfqvk1fcq62KS7A,131509
18
- psycopg_binary.libs/libssl-6a961aeb.so.3,sha256=vuF2c8zgeEfzqGtLGN3ZVeHfBvLSbmL2Tq9hvzVhLMk,1253057
23
+ psycopg_binary.libs/libssl-d39a2c2f.so.3,sha256=sK_i_7wSDzRKmUkQpXA0huJr7JC8W6Uqr8pCfEQBfj0,1257153
24
+ psycopg_binary.libs/liblber-2cfac835.so.2.0.200,sha256=Ic5sIKrWKj5yiVOgThvyjt3Slq7ShcznNU65LcKDcJA,65069
19
25
  psycopg_binary.libs/libkrb5-9480970b.so.3.3,sha256=DO4ibCRDZ1EOW2nuO5ER_LKimBh3A7ZVumEHpelVFzQ,937081
20
- psycopg_binary.libs/libkeyutils-a0133cb5.so.1.5,sha256=SDv3BRb3nl00hAdYv9futpzbng9z7NfcMVzMQuH510A,17913
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=xpdt3sGaitba0v1r8FmCwmj5zqtL6_J8Q5_6KgxwJZQ,147
25
- psycopg_binary-3.2.4.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
26
+ psycopg_binary.libs/libcrypto-89f287ef.so.3,sha256=cUnUTOscWpbvDB2xKhK7SMa6s-zJnxEIQ-oSbOK4L9Y,5304489
index 307030e..4e7ee08 100755
Binary file
index 56196bb..315aeff 100755
Binary file
index 0a9bf9a..997a71f 100755
Binary file
index 35faa54..f47d1bd 100755
Binary file
Binary file
Binary file