]> git.ipfire.org Git - thirdparty/psycopg.git/log
thirdparty/psycopg.git
21 months agorefactor: use typing.Self
Daniele Varrazzo [Sat, 30 Dec 2023 00:30:39 +0000 (01:30 +0100)] 
refactor: use typing.Self

The object seems available for all the supported Python version and
should avoid problems with PyRight (see #708).

It is not a solution for #308 because we cannot use `Self[Row]`.

22 months agotest: add async driver to sqlalchemy pipeline
Federico Caselli [Mon, 18 Dec 2023 20:31:22 +0000 (21:31 +0100)] 
test: add async driver to sqlalchemy pipeline

22 months agochore: bump psycopg package version to 3.1.16
Daniele Varrazzo [Tue, 19 Dec 2023 01:07:54 +0000 (02:07 +0100)] 
chore: bump psycopg package version to 3.1.16

22 months agofix: fix empty ports handling in async multiple connection attempts
Daniele Varrazzo [Mon, 18 Dec 2023 23:58:35 +0000 (00:58 +0100)] 
fix: fix empty ports handling in async multiple connection attempts

Close #703.

22 months agochore: bump ast_commment version
Daniele Varrazzo [Mon, 18 Dec 2023 22:33:12 +0000 (23:33 +0100)] 
chore: bump ast_commment version

Drop workarounds for a couple of bugs which have been fixed upstream.

Force re-generation of the docker image when the ast_comment module changes.

22 months agodocs: improvement to the Cursor docs
Daniele Varrazzo [Mon, 18 Dec 2023 01:26:49 +0000 (02:26 +0100)] 
docs: improvement to the Cursor docs

22 months agodocs: add section about concurrency
Daniele Varrazzo [Mon, 18 Dec 2023 01:23:52 +0000 (02:23 +0100)] 
docs: add section about concurrency

22 months agochore: include codespell in dev dependencies
Daniele Varrazzo [Mon, 18 Dec 2023 01:54:26 +0000 (02:54 +0100)] 
chore: include codespell in dev dependencies

22 months agochore: bump psycopg package version to 3.1.15
Daniele Varrazzo [Thu, 14 Dec 2023 03:26:56 +0000 (04:26 +0100)] 
chore: bump psycopg package version to 3.1.15

22 months agoMerge branch 'fix-service-file'
Daniele Varrazzo [Thu, 14 Dec 2023 12:51:23 +0000 (13:51 +0100)] 
Merge branch 'fix-service-file'

22 months agorefactor: add compiled_default option to _get_params
Daniele Varrazzo [Wed, 13 Dec 2023 13:20:49 +0000 (14:20 +0100)] 
refactor: add compiled_default option to _get_params

Make it less awkward to come out with a 5432 when we really want a port
number (in name resolution) but still allow to leave it unspecified to
avoid mangling the conninfo.

22 months agofix: honour the PGLOADBALANCEHOSTS env var
Daniele Varrazzo [Wed, 13 Dec 2023 11:31:13 +0000 (12:31 +0100)] 
fix: honour the PGLOADBALANCEHOSTS env var

22 months agofix: honour the PGCONNECT_TIMEOUT env var
Daniele Varrazzo [Wed, 13 Dec 2023 03:55:51 +0000 (04:55 +0100)] 
fix: honour the PGCONNECT_TIMEOUT env var

22 months agofix: set minimum timeout to 2s
Daniele Varrazzo [Wed, 13 Dec 2023 03:35:48 +0000 (04:35 +0100)] 
fix: set minimum timeout to 2s

This is consistent with what the libpq does.

Move timeout calculation to a function in conninfo module and don't
change the connect_timeout parameter explicitly in the connection
string.

Drop awful drop_default_args_from_conninfo() from tests.

22 months agofix: add debug logging when a connection attempt is discarded
Daniele Varrazzo [Wed, 13 Dec 2023 03:34:40 +0000 (04:34 +0100)] 
fix: add debug logging when a connection attempt is discarded

22 months agorefactor: return lists from conninfo attempt functions
Daniele Varrazzo [Wed, 13 Dec 2023 00:33:04 +0000 (01:33 +0100)] 
refactor: return lists from conninfo attempt functions

22 months agofix: shuffle attempts when one host resolves to more than one IP
Daniele Varrazzo [Wed, 13 Dec 2023 00:03:55 +0000 (01:03 +0100)] 
fix: shuffle attempts when one host resolves to more than one IP

This behaviour (first resolve all the hosts, then shuffle the IPs) mimics
better what the libpq does in non-async mode.

22 months agofix: don't add defaults to connection strings
Daniele Varrazzo [Tue, 12 Dec 2023 19:33:20 +0000 (20:33 +0100)] 
fix: don't add defaults to connection strings

A default such as empty string for host may may shadow values defined in
a service file.

Fix #694.

22 months agofix: fix iteration resolving hosts with multiple IP addresses in async mode
Daniele Varrazzo [Tue, 12 Dec 2023 16:56:37 +0000 (17:56 +0100)] 
fix: fix iteration resolving hosts with multiple IP addresses in async mode

Fix #695 (not 100% sure, but probably).

22 months agotest: mark a couple of test slow
Daniele Varrazzo [Tue, 12 Dec 2023 17:02:22 +0000 (18:02 +0100)] 
test: mark a couple of test slow

Sub-second, but noticeable glitches in my stream of green dots.

22 months agotest: mark flaky ref count tests
nialov [Mon, 4 Dec 2023 17:33:46 +0000 (19:33 +0200)] 
test: mark flaky ref count tests

All tests that have the 'gc' fixture are now marked with the refcount mark. The
reasoning is that they demonstrate flaky behaviour and disabling them in
certain CI is necessary to ensure reliable testing. See #692

22 months agodocs: fix doc about the module gevent needs to patch
Daniele Varrazzo [Mon, 4 Dec 2023 09:35:40 +0000 (10:35 +0100)] 
docs: fix doc about the module gevent needs to patch

22 months agochore: bump psycopg package version to 3.1.14
Daniele Varrazzo [Sat, 2 Dec 2023 02:20:04 +0000 (03:20 +0100)] 
chore: bump psycopg package version to 3.1.14

22 months agoMerge branch 'pypy'
Daniele Varrazzo [Sat, 2 Dec 2023 02:19:20 +0000 (03:19 +0100)] 
Merge branch 'pypy'

22 months agotest: add gc fixtures to skip tests on PyPy more easily 686/head
Nick Pope [Tue, 28 Nov 2023 15:50:30 +0000 (15:50 +0000)] 
test: add gc fixtures to skip tests on PyPy more easily

22 months agochore: add support for PyPy.
Nick Pope [Tue, 28 Nov 2023 12:46:59 +0000 (12:46 +0000)] 
chore: add support for PyPy.

22 months agoMerge branch 'fix-gevent'
Daniele Varrazzo [Fri, 1 Dec 2023 23:40:07 +0000 (00:40 +0100)] 
Merge branch 'fix-gevent'

22 months agoci: test gevent integration 688/head
Daniele Varrazzo [Thu, 30 Nov 2023 10:23:27 +0000 (11:23 +0100)] 
ci: test gevent integration

22 months agofix: ensure gevent collaboration
Daniele Varrazzo [Thu, 30 Nov 2023 09:05:33 +0000 (10:05 +0100)] 
fix: ensure gevent collaboration

Close #527

22 months agotest: let pytest show more info in summary
Denis Laxalde [Thu, 30 Nov 2023 20:01:01 +0000 (21:01 +0100)] 
test: let pytest show more info in summary

We add '-ra' to pytest options so as to get report about "(a)ll except
passed" tests. This is in particular useful to get the detailed message
about why some tests got skipped (especially useful in CI).

22 months agorefactor: use `yield from` in connections attempts
Daniele Varrazzo [Thu, 30 Nov 2023 09:11:46 +0000 (10:11 +0100)] 
refactor: use `yield from` in connections attempts

23 months agoMerge pull request #682 from mweinelt/clear-pg-env-when-testing-connect
Daniele Varrazzo [Tue, 21 Nov 2023 12:19:25 +0000 (12:19 +0000)] 
Merge pull request #682 from mweinelt/clear-pg-env-when-testing-connect

23 months agotest: fix test failing to connect if env vars are cleaned 682/head
Daniele Varrazzo [Tue, 21 Nov 2023 08:49:24 +0000 (09:49 +0100)] 
test: fix test failing to connect if env vars are cleaned

Add `dsn_env` fixture returning the `dsn` merged with the values in the
PG* env vars. This way the env can be cleaned but a working connection
string is still available.

23 months agofix: flush PG environment variables in test_connect{,_args}
Martin Weinelt [Tue, 21 Nov 2023 01:55:02 +0000 (02:55 +0100)] 
fix: flush PG environment variables in test_connect{,_args}

These tests were previously affected by environment variables, that can
be used to configure a postgresql instance.

Closes: #681
23 months agotest: allow importing the tests module on master with Psycopg 3.1
Daniele Varrazzo [Sun, 19 Nov 2023 12:36:16 +0000 (13:36 +0100)] 
test: allow importing the tests module on master with Psycopg 3.1

Useful to test the master version of the pool with a released version of
psycopg.

23 months agochore(ci): use existing macos11 packages in macOS arm build
Daniele Varrazzo [Fri, 17 Nov 2023 16:00:08 +0000 (17:00 +0100)] 
chore(ci): use existing macos11 packages in macOS arm build

23 months agochore: bump psycopg package version to 3.1.13
Daniele Varrazzo [Fri, 17 Nov 2023 15:36:57 +0000 (16:36 +0100)] 
chore: bump psycopg package version to 3.1.13

23 months agofix: plug memory leak receiving notifications in python libpq wrapper
Daniele Varrazzo [Thu, 16 Nov 2023 01:27:14 +0000 (02:27 +0100)] 
fix: plug memory leak receiving notifications in python libpq wrapper

Close #679.

23 months agoMerge pull request #675 from psycopg/fix-multiple-hosts
Daniele Varrazzo [Tue, 14 Nov 2023 00:22:12 +0000 (00:22 +0000)] 
Merge pull request #675 from psycopg/fix-multiple-hosts

Fix handling of multiple hosts

23 months agochore: drop conninfo.resolve_hostaddr_async 675/head
Daniele Varrazzo [Mon, 13 Nov 2023 22:56:46 +0000 (23:56 +0100)] 
chore: drop conninfo.resolve_hostaddr_async

The function is no more used internally and only exposed from the _dns
module with a warning. Its implementation is now an application of a few
internal functions exposed internally by the conninfo module. Move the
whole implementation into _dns.

23 months agofix: add support for the 'load_balance_hosts' connection parameter
Daniele Varrazzo [Mon, 13 Nov 2023 20:12:45 +0000 (20:12 +0000)] 
fix: add support for the 'load_balance_hosts' connection parameter

23 months agotest: test conninfo attempts functions and multiple host support in connection
Daniele Varrazzo [Mon, 13 Nov 2023 18:08:51 +0000 (18:08 +0000)] 
test: test conninfo attempts functions and multiple host support in connection

23 months agofeat: explicitly iterate on multiple hosts on connections
Daniele Varrazzo [Thu, 26 Oct 2023 21:16:01 +0000 (23:16 +0200)] 
feat: explicitly iterate on multiple hosts on connections

The libpq async connection path doesn't iterate on the attempts, so we
need to do it ourselves.

23 months agorefactor: introduce support function to split connection attempts
Daniele Varrazzo [Thu, 26 Oct 2023 16:28:17 +0000 (18:28 +0200)] 
refactor: introduce support function to split connection attempts

Refactor the `resolve_hostaddr_async()` function to make use of such
facilities.

23 months agorefactor: move setting autocommit on connection out of _connect_gen
Daniele Varrazzo [Wed, 25 Oct 2023 18:23:08 +0000 (20:23 +0200)] 
refactor: move setting autocommit on connection out of _connect_gen

23 months agochore: refresh 3rd party tests
Daniele Varrazzo [Sat, 11 Nov 2023 15:32:07 +0000 (15:32 +0000)] 
chore: refresh 3rd party tests

- upgrade Python to 3.12
- test stable version of SQLAlchemy 2
- add missing SQLAlchemy test dependency

Testing Django with Python 3.12 not enabled yet as it requires pylibmc wheel
packages for Python 3.12 (https://github.com/lericson/pylibmc/issues/288).

23 months agodocs(pool): document 3.1.9 as released
Daniele Varrazzo [Sat, 11 Nov 2023 19:09:30 +0000 (19:09 +0000)] 
docs(pool): document 3.1.9 as released

Packages being baked now.

23 months agoMerge branch 'test-pool-3.2-psycopg-3.1'
Daniele Varrazzo [Sat, 11 Nov 2023 19:09:00 +0000 (19:09 +0000)] 
Merge branch 'test-pool-3.2-psycopg-3.1'

23 months agoci: test psycopg pool package with released a psycopg version
Daniele Varrazzo [Sat, 11 Nov 2023 16:50:42 +0000 (16:50 +0000)] 
ci: test psycopg pool package with released a psycopg version

23 months agotest: allow to run pytest -m pool with psycopg 3.1 imported
Daniele Varrazzo [Sat, 11 Nov 2023 16:47:35 +0000 (16:47 +0000)] 
test: allow to run pytest -m pool with psycopg 3.1 imported

This allows to test psycopg pool 3.2 tests with psycopg 3.1 installed.

23 months agochore: bump psycopg_pool package version to 3.3.0.dev1
Daniele Varrazzo [Sat, 11 Nov 2023 16:57:17 +0000 (16:57 +0000)] 
chore: bump psycopg_pool package version to 3.3.0.dev1

23 months agochore: fix mypy >= 1.7 warning in tests
Daniele Varrazzo [Sat, 11 Nov 2023 15:30:55 +0000 (15:30 +0000)] 
chore: fix mypy >= 1.7 warning in tests

23 months agochore: bump psycopg_pool package version to 3.2.0 pool-3.2.0
Daniele Varrazzo [Sat, 11 Nov 2023 14:59:49 +0000 (14:59 +0000)] 
chore: bump psycopg_pool package version to 3.2.0

23 months agofix(bump_version): fix bumping minor version with dev releases
Daniele Varrazzo [Sat, 11 Nov 2023 14:59:09 +0000 (14:59 +0000)] 
fix(bump_version): fix bumping minor version with dev releases

23 months agochore(macos): build images with more recent Python versions
Daniele Varrazzo [Thu, 2 Nov 2023 09:25:18 +0000 (10:25 +0100)] 
chore(macos): build images with more recent Python versions

23 months agoMerge pull request #670 from psycopg/fix-667
Daniele Varrazzo [Tue, 24 Oct 2023 18:14:59 +0000 (19:14 +0100)] 
Merge pull request #670 from psycopg/fix-667

Handle gracefully EINTR on signals instead of raising InterruptedError

23 months agofix: retry automatically syscall in wait_c if it fails with EINTR 670/head
Daniele Varrazzo [Tue, 24 Oct 2023 09:19:36 +0000 (11:19 +0200)] 
fix: retry automatically syscall in wait_c if it fails with EINTR

Fix #667

23 months agotest: add test to generate an EINTR in wait_c
Daniele Varrazzo [Tue, 24 Oct 2023 08:50:40 +0000 (10:50 +0200)] 
test: add test to generate an EINTR in wait_c

23 months agoMark test_identify_closure as timing-sensitive
Martin Weinelt [Mon, 23 Oct 2023 22:54:18 +0000 (00:54 +0200)] 
Mark test_identify_closure as timing-sensitive

```
____________________________ test_identify_closure _____________________________

conn_cls = <class 'psycopg.Connection'>, dsn = 'host=127.0.0.1 user=psycopg'

    @pytest.mark.crdb_skip("pg_terminate_backend")
    @pytest.mark.slow
    def test_identify_closure(conn_cls, dsn):
        def closer():
            time.sleep(0.2)
            conn2.execute("select pg_terminate_backend(%s)", [conn.pgconn.backend_pid])

        conn = conn_cls.connect(dsn)
        conn2 = conn_cls.connect(dsn)
        try:
            t = threading.Thread(target=closer)
            t.start()
            t0 = time.time()
            try:
                with pytest.raises(psycopg.OperationalError):
                    conn.execute("select pg_sleep(1.0)")
                t1 = time.time()
>               assert 0.2 < t1 - t0 < 0.4
E               assert 0.2 < (1697715164.8614173 - 1697715164.6617775)

tests/test_concurrency.py:231: AssertionError
```

2 years agochore: use AnyIO 4.0+ in tests dependencies
Denis Laxalde [Wed, 18 Oct 2023 08:35:50 +0000 (10:35 +0200)] 
chore: use AnyIO 4.0+ in tests dependencies

We set the 'loop_factory' asyncio option for parametrizing the
anyio_backend() fixture as anyio 4.0 has replaced the 'policy' option by
'loop_factory'.

In tests/pool/test_pool_async_noasyncio.py, we previously used
the anyio_backend_options fixture to retrieve the loop policy; now we
build it directly. This could be improved by using the loop_factory, but
only from Python 3.11 with an asyncio.Runner().

2 years agorefactor(pool): more logical ordering for kwargs
Daniele Varrazzo [Sat, 14 Oct 2023 07:59:57 +0000 (09:59 +0200)] 
refactor(pool): more logical ordering for kwargs

- conn construction params (class, kwargs, the class affects the pool
  type annotations so first is better);
- sizing (documented as an important parameter for the pool);
- open?
- callbacks (in the order they are used);
- name;
- other details more unlikely to be touched.

The order is the same in docs and code.

2 years agoMerge branch 'pool-getconn-safe'
Daniele Varrazzo [Sat, 14 Oct 2023 07:45:52 +0000 (09:45 +0200)] 
Merge branch 'pool-getconn-safe'

2 years agodocs(pool): document check callback, drop previous recipes and rants 658/head
Daniele Varrazzo [Sat, 7 Oct 2023 02:16:43 +0000 (04:16 +0200)] 
docs(pool): document check callback, drop previous recipes and rants

2 years agotest(pool): add tests to verify check on getconn's behaviour
Daniele Varrazzo [Fri, 6 Oct 2023 16:31:52 +0000 (18:31 +0200)] 
test(pool): add tests to verify check on getconn's behaviour

2 years agofix(pool): clean up logging in getconn check
Daniele Varrazzo [Fri, 6 Oct 2023 16:30:18 +0000 (18:30 +0200)] 
fix(pool): clean up logging in getconn check

If a check callback is set, assume that failed checks on getconn are
just part of normal operative life: don't consider them warnings.

2 years agofeat(pool): add `check` connection parameter
Daniele Varrazzo [Fri, 6 Oct 2023 13:15:04 +0000 (15:15 +0200)] 
feat(pool): add `check` connection parameter

Allow to specify a callback to call on getconn and discard the
connection if not in working state.

2 years agofeat(pool): add `check_connection()` method
Daniele Varrazzo [Fri, 6 Oct 2023 13:13:39 +0000 (15:13 +0200)] 
feat(pool): add `check_connection()` method

The method is public, will be documented as available to use as check
parameter, but also used internally by the `check()` method.

2 years agorefactor(pool): introduce a loop in getconn to allow connection check
Daniele Varrazzo [Fri, 6 Oct 2023 11:00:41 +0000 (13:00 +0200)] 
refactor(pool): introduce a loop in getconn to allow connection check

2 years agoMerge branch 'pool-warn-implicit-open'
Daniele Varrazzo [Sat, 14 Oct 2023 07:40:00 +0000 (09:40 +0200)] 
Merge branch 'pool-warn-implicit-open'

2 years agodocs(pool): warn about future behaviour changes of open on init 659/head
Daniele Varrazzo [Fri, 13 Oct 2023 23:51:11 +0000 (01:51 +0200)] 
docs(pool): warn about future behaviour changes of open on init

2 years agofeat(pool): raise a warning if async pools are open in the constructor
Daniele Varrazzo [Sun, 8 Oct 2023 18:43:47 +0000 (20:43 +0200)] 
feat(pool): raise a warning if async pools are open in the constructor

2 years agofeat(pool) raise a warning if the pool is expected to be opened implicitly
Daniele Varrazzo [Sat, 7 Oct 2023 22:01:57 +0000 (00:01 +0200)] 
feat(pool) raise a warning if the pool is expected to be opened implicitly

2 years agorefactor: define conn_encoding on pgconn_encoding
Daniele Varrazzo [Wed, 11 Oct 2023 23:06:47 +0000 (01:06 +0200)] 
refactor: define conn_encoding on pgconn_encoding

Also more consistent use of the two functions throughout the codebase.

2 years agochore: move codespell configuration to toml file
Daniele Varrazzo [Fri, 13 Oct 2023 23:52:05 +0000 (01:52 +0200)] 
chore: move codespell configuration to toml file

Configuration tweaked to avoid files commonly found in dev environments.

2 years agostyle(pool): more explicit error message for pool open with no loop
Daniele Varrazzo [Sun, 8 Oct 2023 17:31:07 +0000 (19:31 +0200)] 
style(pool): more explicit error message for pool open with no loop

2 years agoMerge branch 'async-to-sync'
Daniele Varrazzo [Fri, 13 Oct 2023 22:52:36 +0000 (00:52 +0200)] 
Merge branch 'async-to-sync'

2 years agoMerge pull request #660 from dlax/async-to-sync 657/head
Daniele Varrazzo [Fri, 13 Oct 2023 22:49:51 +0000 (23:49 +0100)] 
Merge pull request #660 from dlax/async-to-sync

improvements to tools/async_to_sync.py

2 years agorefactor: allow to use podman container engine in async_to_sync.py 660/head
Denis Laxalde [Fri, 13 Oct 2023 07:40:09 +0000 (09:40 +0200)] 
refactor: allow to use podman container engine in async_to_sync.py

2 years agofeat(tools): warn about the Python version used in async-to-sync
Daniele Varrazzo [Fri, 13 Oct 2023 14:04:12 +0000 (16:04 +0200)] 
feat(tools): warn about the Python version used in async-to-sync

Notify the user that they may get spurious results.

2 years agofix(tools): remove mention of dropped shell script in async_to_sync.py
Denis Laxalde [Fri, 13 Oct 2023 07:36:28 +0000 (09:36 +0200)] 
fix(tools): remove mention of dropped shell script in async_to_sync.py

2 years agorefactor: use text mode for subprocess in async_to_sync.py
Denis Laxalde [Fri, 13 Oct 2023 06:51:54 +0000 (08:51 +0200)] 
refactor: use text mode for subprocess in async_to_sync.py

2 years agorefactor: replace 'git ls-files' + 'grep' by a single 'git grep'
Denis Laxalde [Fri, 13 Oct 2023 06:54:01 +0000 (08:54 +0200)] 
refactor: replace 'git ls-files' + 'grep' by a single 'git grep'

2 years agochore: use Python 3.11 to conver async to sync
Daniele Varrazzo [Fri, 13 Oct 2023 01:35:26 +0000 (03:35 +0200)] 
chore: use Python 3.11 to conver async to sync

2 years agochore: add option to run async_to_sync in a docker image
Daniele Varrazzo [Fri, 13 Oct 2023 01:22:04 +0000 (03:22 +0200)] 
chore: add option to run async_to_sync in a docker image

This allows to specify which Python version to use for the conversion
(even when it's not installed on the machine).

2 years agorefactor: drop 'convert_async_to_sync.sh' script
Daniele Varrazzo [Fri, 13 Oct 2023 00:19:03 +0000 (02:19 +0200)] 
refactor: drop 'convert_async_to_sync.sh' script

Do all in 'async_to_sync.py:' added --all and --check options.

2 years agotest: drop unneeded raise on pytest.skip()
Daniele Varrazzo [Wed, 11 Oct 2023 11:30:46 +0000 (13:30 +0200)] 
test: drop unneeded raise on pytest.skip()

2 years agorefactor(test): uniform the way sync/async-only tests are skipped
Daniele Varrazzo [Sun, 8 Oct 2023 13:55:31 +0000 (15:55 +0200)] 
refactor(test): uniform the way sync/async-only tests are skipped

Add @skip_sync, @skip_async markers to mark the functions to skip.

2 years agotest: add check to verify the completeness of convert_async_to_sync
Daniele Varrazzo [Sun, 8 Oct 2023 10:33:47 +0000 (12:33 +0200)] 
test: add check to verify the completeness of convert_async_to_sync

Verify that all the files commented as having been automatically
converted are actually included in the script converting them.

2 years agostyle: more care in the docstring mentioning sync/async versions of the code
Daniele Varrazzo [Sun, 8 Oct 2023 09:55:58 +0000 (11:55 +0200)] 
style: more care in the docstring mentioning sync/async versions of the code

2 years agorefactor(pool): define scheduler task as dataclass
Daniele Varrazzo [Sun, 8 Oct 2023 09:45:28 +0000 (11:45 +0200)] 
refactor(pool): define scheduler task as dataclass

2 years agorefactor(async_to_sync): create new object without listing all the attributes
Daniele Varrazzo [Sun, 8 Oct 2023 09:02:23 +0000 (11:02 +0200)] 
refactor(async_to_sync): create new object without listing all the attributes

2 years agostyle(pool): use `pass` instead of `return` for empty methods
Daniele Varrazzo [Sun, 8 Oct 2023 08:32:29 +0000 (10:32 +0200)] 
style(pool): use `pass` instead of `return` for empty methods

2 years agodocs: fix typos/grammar
Daniele Varrazzo [Sun, 8 Oct 2023 08:30:26 +0000 (09:30 +0100)] 
docs: fix typos/grammar

Co-authored-by: Daniel Fortunov <asqui@users.noreply.github.com>
2 years agorefactor(copy): generate sync code from async
Daniele Varrazzo [Fri, 6 Oct 2023 10:58:49 +0000 (12:58 +0200)] 
refactor(copy): generate sync code from async

2 years agorefactor(test): add acompat module
Daniele Varrazzo [Thu, 5 Oct 2023 23:58:54 +0000 (01:58 +0200)] 
refactor(test): add acompat module

2 years agofeat(tools): allow to specify the files to convert async to sync
Daniele Varrazzo [Fri, 6 Oct 2023 13:02:50 +0000 (15:02 +0200)] 
feat(tools): allow to specify the files to convert async to sync

2 years agofix: fix type annotation problems on Python 3.8, 3.9
Daniele Varrazzo [Thu, 5 Oct 2023 03:10:00 +0000 (05:10 +0200)] 
fix: fix type annotation problems on Python 3.8, 3.9

2 years agorefactor(pool): generate null pool module from async counterpart
Daniele Varrazzo [Thu, 5 Oct 2023 02:06:34 +0000 (04:06 +0200)] 
refactor(pool): generate null pool module from async counterpart

2 years agorefactor(pool): move null pool base to its own module
Daniele Varrazzo [Thu, 5 Oct 2023 01:58:57 +0000 (03:58 +0200)] 
refactor(pool): move null pool base to its own module

And some more light refactoring.

2 years agorefactor(pool): generate pool sync module from async counterpart
Daniele Varrazzo [Thu, 5 Oct 2023 01:40:28 +0000 (03:40 +0200)] 
refactor(pool): generate pool sync module from async counterpart