psycopg-binary 3.2.4__cp38-cp38-macosx_10_9_x86_64.whl → 3.2.6__cp38-cp38-macosx_10_9_x86_64.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.

Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -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
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
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
@@ -0,0 +1,23 @@
1
+ psycopg_binary-3.2.6.dist-info/RECORD,,
2
+ psycopg_binary-3.2.6.dist-info/WHEEL,sha256=Kx6RWhSVfL88-gHgRuuK5c46fDrxzStSDcWbfEAkrVo,108
3
+ psycopg_binary-3.2.6.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
4
+ psycopg_binary-3.2.6.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
5
+ psycopg_binary-3.2.6.dist-info/METADATA,sha256=UHt-jdG3qa8beMTjiMgf2FQ2wYCKt0-bsDiwUFP1550,2833
6
+ psycopg_binary/_uuid.py,sha256=2qmCSE61jkn5o6HFqiS6o7a_YtQj19ZeogUO-4YVuG0,765
7
+ psycopg_binary/_psycopg.pyi,sha256=uCDlLoK7ipWj-XdkRpR5d1ZwQBr6kn4QKywzbuphA2Q,3240
8
+ psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
9
+ psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
10
+ psycopg_binary/_psycopg.cpython-38-darwin.so,sha256=D7NCr4uiMa3pFqYMrZ8Rlm6-e6XuNTXxzYaRPXfsf-w,931712
11
+ psycopg_binary/pq.cpython-38-darwin.so,sha256=F9ynwpXBDDCBLW5iDdFzpPVw00yVzXnNB0UpMgPLvvU,406592
12
+ psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ psycopg_binary/.dylibs/libcom_err.3.0.dylib,sha256=4ohKKNJysqvL94L3I6guOqcgPCONkwAXzoehnV0c_fQ,37152
14
+ psycopg_binary/.dylibs/libldap.2.dylib,sha256=dMAdIBrI7kTlkltFNI0ENqk-MfG7846EMd05aRs1oaU,470320
15
+ psycopg_binary/.dylibs/libpq.5.dylib,sha256=pK0rX8yxuLMmf1YUauYmzUubsE8PjKxADnuLwxtWw7k,339552
16
+ psycopg_binary/.dylibs/libsasl2.3.dylib,sha256=UbkzPVDqpDJMHtccMuTu0VM5nt05Z9jTYY_fLdujmPg,140496
17
+ psycopg_binary/.dylibs/libssl.3.dylib,sha256=MPMv1yy3jzuKfz7vzme_ehAHAMKR0a_K1KzUVGiVn8E,991200
18
+ psycopg_binary/.dylibs/libcrypto.3.dylib,sha256=6sV9DAzXomQt2H0fH76Wwt2qbv5aiWF99tn43MJLY1w,5013216
19
+ psycopg_binary/.dylibs/libgssapi_krb5.2.2.dylib,sha256=RNIJSvDPrRLPd-2gzaG7h8TMJp9KaoTLvIQSz-LA6T4,392560
20
+ psycopg_binary/.dylibs/liblber.2.dylib,sha256=JaaCSZLDdzzIjdml9_YgM5yF89Aq3Nhg3QX1mCnhybY,106688
21
+ psycopg_binary/.dylibs/libkrb5.3.3.dylib,sha256=BDSW4gjjWiJ0RA6SEa55Y2PRTQMlnB7qbPl4ovi-0hQ,1004064
22
+ psycopg_binary/.dylibs/libkrb5support.1.1.dylib,sha256=yyzozpyBi8nH_i1XZw-gLAYc-u47X5CxgnMttt_6-z4,79040
23
+ psycopg_binary/.dylibs/libk5crypto.3.1.dylib,sha256=TtRrs6ufVw_nGeG6b-eILzq_o21myCJQxq43Lp-3RRQ,208832
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.3.2)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp38-cp38-macosx_10_9_x86_64
5
5
 
@@ -1,22 +0,0 @@
1
- psycopg_binary-3.2.4.dist-info/RECORD,,
2
- psycopg_binary-3.2.4.dist-info/WHEEL,sha256=w6_R5zToL4dhiDH-J5jk0JB_efQ_6KdbwveuTVp2z9A,108
3
- psycopg_binary-3.2.4.dist-info/top_level.txt,sha256=8OM_PsAa5oKkzVvRu8kDESihBQo_LXqwG_nrlecubIk,15
4
- psycopg_binary-3.2.4.dist-info/LICENSE.txt,sha256=46mU2C5kSwOnkqkw9XQAJlhBL2JAf1_uCD8lVcXyMRg,7652
5
- psycopg_binary-3.2.4.dist-info/METADATA,sha256=V0foZ38jx1UYi_FKGkWw6ASpya0IiAjMuvVUTzLucGk,2833
6
- psycopg_binary/_psycopg.pyi,sha256=czikCGEKdbZ9RkcWNmPUvI2j7mcOX6jTDLVI-5oHtaM,3239
7
- psycopg_binary/version.py,sha256=MfZD84KKXi17AqKx1JY_ne89d_c8sERObKoe47f_48o,236
8
- psycopg_binary/__init__.py,sha256=5kxw9Qdn8ubIi4ik92mxZOsjr5UO0vwq5T5S0BhCWGg,402
9
- psycopg_binary/_psycopg.cpython-38-darwin.so,sha256=XmG2Xanf2t4EyIW5ETtz3EAhFUCwPpOV9Xg_WZtce2M,917632
10
- psycopg_binary/pq.cpython-38-darwin.so,sha256=IuBJnyYC40z3yEx3Cy_VS7w0F2eMyGZfUhhtBWcqLLo,406592
11
- psycopg_binary/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- psycopg_binary/.dylibs/libcom_err.3.0.dylib,sha256=Plc5FlezyGenWOvH9iJvZqwOGw-njY9ifUtgYzx4vIg,37152
13
- psycopg_binary/.dylibs/libldap.2.dylib,sha256=DW9Cyao05r2zuzlnQxPuBBuv9BbTXyQMzoPVrONjuD4,470320
14
- psycopg_binary/.dylibs/libpq.5.dylib,sha256=1ugcK9KAdLr87HQEHaj08k4UStUreSI6f44U2KVviS0,339504
15
- psycopg_binary/.dylibs/libsasl2.3.dylib,sha256=Csfq0_9pNh6yRd8u3VrInhO-3n6xZ37-IOXXJzFF6BY,140496
16
- psycopg_binary/.dylibs/libssl.3.dylib,sha256=ErKo1UzKPIgiIWm9tqcVMXlfId6qil6kPys3eLtGWG4,991216
17
- psycopg_binary/.dylibs/libcrypto.3.dylib,sha256=vXh93TnmaHynFK1HAaCOwsMeUr9hUTEHGeFS7LKMOzg,5012992
18
- psycopg_binary/.dylibs/libgssapi_krb5.2.2.dylib,sha256=YLTz62fhip9oLjByQ9bH7BcA448BRso_Cda29RvL0Qw,392560
19
- psycopg_binary/.dylibs/liblber.2.dylib,sha256=r4EOsD1FSG-iJZZc5PJg838TXFWKH9UzV1jjjl_uoMc,106688
20
- psycopg_binary/.dylibs/libkrb5.3.3.dylib,sha256=VEi_GPK0x5y1uBZqr1_r6jUJT2jdcB7_1iXiwbZsSVM,1004064
21
- psycopg_binary/.dylibs/libkrb5support.1.1.dylib,sha256=_8j3PC8YYLMLVYvwm1A7rZKN-6tHpMg17U9UNiHklYM,79040
22
- psycopg_binary/.dylibs/libk5crypto.3.1.dylib,sha256=MNcTKA85n5w7mPIREHEshEAqoPDDL36-gh8TKxYISWs,208832