gitextract_qed7mic1/ ├── .clang-format ├── .clangd ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── RELEASING.rst │ ├── release_log.py │ └── workflows/ │ ├── install-krb5.sh │ ├── install-postgres.sh │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── asyncpg/ │ ├── .gitignore │ ├── __init__.py │ ├── _asyncio_compat.py │ ├── _testbase/ │ │ ├── __init__.py │ │ └── fuzzer.py │ ├── _version.py │ ├── cluster.py │ ├── compat.py │ ├── connect_utils.py │ ├── connection.py │ ├── connresource.py │ ├── cursor.py │ ├── exceptions/ │ │ ├── __init__.py │ │ └── _base.py │ ├── introspection.py │ ├── pool.py │ ├── prepared_stmt.py │ ├── protocol/ │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── codecs/ │ │ │ ├── __init__.py │ │ │ ├── array.pyx │ │ │ ├── base.pxd │ │ │ ├── base.pyx │ │ │ ├── pgproto.pyx │ │ │ ├── range.pyx │ │ │ ├── record.pyx │ │ │ └── textutils.pyx │ │ ├── consts.pxi │ │ ├── coreproto.pxd │ │ ├── coreproto.pyx │ │ ├── cpythonx.pxd │ │ ├── encodings.pyx │ │ ├── pgtypes.pxi │ │ ├── prepared_stmt.pxd │ │ ├── prepared_stmt.pyx │ │ ├── protocol.pxd │ │ ├── protocol.pyi │ │ ├── protocol.pyx │ │ ├── record/ │ │ │ ├── pythoncapi_compat.h │ │ │ ├── pythoncapi_compat_extras.h │ │ │ ├── recordobj.c │ │ │ └── recordobj.h │ │ ├── record.pyi │ │ ├── recordcapi.pxd │ │ ├── scram.pxd │ │ ├── scram.pyx │ │ ├── settings.pxd │ │ └── settings.pyx │ ├── serverversion.py │ ├── transaction.py │ ├── types.py │ └── utils.py ├── docs/ │ ├── .gitignore │ ├── Makefile │ ├── _static/ │ │ └── theme_overrides.css │ ├── api/ │ │ └── index.rst │ ├── conf.py │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ ├── requirements.txt │ └── usage.rst ├── pyproject.toml ├── setup.py ├── tests/ │ ├── __init__.py │ ├── certs/ │ │ ├── ca.cert.pem │ │ ├── ca.crl.pem │ │ ├── ca.key.pem │ │ ├── client.cert.pem │ │ ├── client.csr.pem │ │ ├── client.key.pem │ │ ├── client.key.protected.pem │ │ ├── client_ca.cert.pem │ │ ├── client_ca.cert.srl │ │ ├── client_ca.key.pem │ │ ├── gen.py │ │ ├── server.cert.pem │ │ ├── server.crl.pem │ │ └── server.key.pem │ ├── test__environment.py │ ├── test__sourcecode.py │ ├── test_adversity.py │ ├── test_cache_invalidation.py │ ├── test_cancellation.py │ ├── test_codecs.py │ ├── test_connect.py │ ├── test_copy.py │ ├── test_cursor.py │ ├── test_exceptions.py │ ├── test_execute.py │ ├── test_introspection.py │ ├── test_listeners.py │ ├── test_logging.py │ ├── test_pool.py │ ├── test_prepare.py │ ├── test_record.py │ ├── test_subinterpreters.py │ ├── test_test.py │ ├── test_timeout.py │ ├── test_transaction.py │ ├── test_types.py │ └── test_utils.py └── tools/ ├── generate_exceptions.py └── generate_type_map.py