psycopg-binary 3.2.4__cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 3.2.6__cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.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.6
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/_psycopg.cpython-312-aarch64-linux-gnu.so,sha256=c-RGU2WwObUFUbKjL9zS228Yo8YT536gx4dpT2RuTjU,922721
2
- psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
4
- psycopg_binary/_psycopg.pyi,sha256=czikCGEKdbZ9RkcWNmPUvI2j7mcOX6jTDLVI-5oHtaM,3239
5
- psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
6
- psycopg_binary/pq.cpython-312-aarch64-linux-gnu.so,sha256=r-y7HmzEYc2xaozJYvpM9mel76UWAiXge2l3yGTbEA4,464129
7
- psycopg_binary.libs/libssl-ed89d281.so.3,sha256=kEqtEYAomKGTgAa7KufikjEzZAwlw0FoQHx_VVpBiz0,1203873
8
- psycopg_binary.libs/libpcre-6b975b27.so.1.2.0,sha256=kTyjARTPlsIv7YDGMjmcj28wg6s7YN_tiyV5a_kr348,329017
9
- psycopg_binary.libs/libsasl2-68c9cb0a.so.3.0.0,sha256=n1Kx5RyNvx8w9ZMJiNjAcd__jzT3aSWjHcWAyHlZ4hE,201129
10
- psycopg_binary.libs/libkrb5support-73f3f43d.so.0.1,sha256=iofW8AZCnzXw-iFTTo_m8KMEYGX-y0g44Qu0-KsIk-A,199737
1
+ psycopg_binary-3.2.6.dist-info/WHEEL,sha256=tTeEpLu1y1VmHivQ6bMm8NRle3An2om5sPgaJoJ-yC0,153
2
+ psycopg_binary-3.2.6.dist-info/RECORD,,
3
+ psycopg_binary-3.2.6.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
4
+ psycopg_binary-3.2.6.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
5
+ psycopg_binary-3.2.6.dist-info/METADATA,sha256=EqZeRup0K4zoV0R9Hes0-kz_bA8DRJnJP4HX1xh3SdA,2833
11
6
  psycopg_binary.libs/libcom_err-057ba42b.so.2.1,sha256=15-Bhc613ZZUHLCRqpvlF51C-QXF9dxkh-uJPjvJHgA,132193
12
- psycopg_binary.libs/liblber-b84dbff2.so.2.0.200,sha256=qYX-PbFthi2lUOZc85NpAXiw8ZoevfXdPfh6u0QcqTk,134681
13
- psycopg_binary.libs/libkrb5-90a0ef7c.so.3.3,sha256=86ia-pudkTtsbNuR64ZnM3BcqY2n4RduliYvn0M84nc,1133617
14
- psycopg_binary.libs/libcrypto-69c9822a.so.3,sha256=LTRGoqK6FLJzdOb2-dvzKVHqT_DMiSzCCg2Kn1CeoEA,5603393
7
+ psycopg_binary.libs/libssl-9fbe6e0d.so.3,sha256=1gUzTfNJNtjL2BGIaHqsuO_u0ylTggHpvODKbsbrte4,1203873
15
8
  psycopg_binary.libs/libkeyutils-19c64d08.so.1.5,sha256=0ZzgZJC5eYazXgrrT4itG2okv_6pcKp_rSDAAyOrkio,67145
16
- psycopg_binary.libs/libldap-e1978168.so.2.0.200,sha256=fZDOs8m4muYxqNyQt-Mw_SgPt472jKHWg2ODdzis_lM,607017
17
- psycopg_binary.libs/libpq-7a655a99.so.5.17,sha256=d87mmiCe0LgQ1zkibjXGvYMGx871ZY1_IC7r5MEc1kM,596369
18
9
  psycopg_binary.libs/libselinux-ae24b712.so.1,sha256=1eJaGm35sQckwqW-fQEQwn2OB3pn9PHuzInn3_rS4XQ,333953
10
+ psycopg_binary.libs/libcrypto-1366339a.so.3,sha256=ZdZL3vD8_isDv-s5HFcGgDZWyAhMndJO81NJB6e0Dds,5603393
11
+ psycopg_binary.libs/libkrb5-90a0ef7c.so.3.3,sha256=86ia-pudkTtsbNuR64ZnM3BcqY2n4RduliYvn0M84nc,1133617
12
+ psycopg_binary.libs/libpq-15e50a20.so.5.17,sha256=UY0GyYxJmn9re_1V4P4fCTeMmOp-l0KKdWMH6Z71UYY,596369
13
+ psycopg_binary.libs/libldap-c6d44f36.so.2.0.200,sha256=WXBQoOpwudjiFA7JJt5cU9pg7RtuXMHZad2LpAJABxA,607017
19
14
  psycopg_binary.libs/libgssapi_krb5-fec99a71.so.2.2,sha256=l0t71wix-wkzwb4TuSovUXvNXBrf1p4rzVah9291a3c,468081
15
+ psycopg_binary.libs/libpcre-6b975b27.so.1.2.0,sha256=kTyjARTPlsIv7YDGMjmcj28wg6s7YN_tiyV5a_kr348,329017
16
+ psycopg_binary.libs/liblber-9f5d6a4f.so.2.0.200,sha256=LDv9JzZOGyKehvOexlZRDCxfh2VxpARif1y6cVLc3wU,134681
20
17
  psycopg_binary.libs/libk5crypto-47ac5e52.so.3.1,sha256=d_YCs-ZwJPlIVzcZOgqiKOihchipX6aJLZrMC23htEo,396073
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=nTE35AxMsGRWEKtq6OoAX8r6A4PvpXKeKnLmxVhO6NA,153
25
- psycopg_binary-3.2.4.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
18
+ psycopg_binary.libs/libkrb5support-73f3f43d.so.0.1,sha256=iofW8AZCnzXw-iFTTo_m8KMEYGX-y0g44Qu0-KsIk-A,199737
19
+ psycopg_binary.libs/libsasl2-68c9cb0a.so.3.0.0,sha256=n1Kx5RyNvx8w9ZMJiNjAcd__jzT3aSWjHcWAyHlZ4hE,201129
20
+ psycopg_binary/_uuid.py,sha256=2qmCSE61jkn5o6HFqiS6o7a_YtQj19ZeogUO-4YVuG0,765
21
+ psycopg_binary/pq.cpython-312-aarch64-linux-gnu.so,sha256=FvmrVYk0I8Rb8mUQCFB1vufJ5G20AaPzhRRqqMQvgfc,464129
22
+ psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
23
+ psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ psycopg_binary/_psycopg.cpython-312-aarch64-linux-gnu.so,sha256=2mLhDQye5LeaKpPazYEyAahuRlLEq3X4-1eLIHZr0sE,922777
25
+ psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
26
+ psycopg_binary/_psycopg.pyi,sha256=uCDlLoK7ipWj-XdkRpR5d1ZwQBr6kn4QKywzbuphA2Q,3240
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-manylinux_2_17_aarch64
5
5
  Tag: cp312-cp312-manylinux2014_aarch64
index 6b2812a..3e02558 100755
Binary file
index 845dcf2..64f410d 100755
Binary file
index 750dd66..f6dea48 100755
Binary file
index c25a267..17c6761 100755
Binary file
Binary file
Binary file