+"""
+psycopg3._psycopg3 optimization module.
+
+The module contains optimized C code used in preference to Python code
+if a compiler is available.
+"""
+
+# Copyright (C) 2020 The Psycopg Team
+
include "types/numeric.pyx"
include "types/text.pyx"
include "adapt.pyx"
+"""
+Cython adapters for numeric types.
+"""
+
+# Copyright (C) 2020 The Psycopg Team
+
from libc.stdint cimport *
from psycopg3.types.endian cimport be16toh, be32toh, be64toh
+"""
+Cython adapters for textual types.
+"""
+
+# Copyright (C) 2020 The Psycopg Team
+
from cpython.bytes cimport PyBytes_FromStringAndSize
from cpython.unicode cimport PyUnicode_DecodeUTF8
from psycopg3.pq cimport libpq