eventsourcing 9.4.3__tar.gz → 9.4.4__tar.gz
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 eventsourcing might be problematic. Click here for more details.
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/PKG-INFO +1 -1
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/dispatch.py +1 -1
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/sqlite.py +4 -4
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/pyproject.toml +1 -1
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/AUTHORS +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/LICENSE +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/README.md +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/__init__.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/application.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/cipher.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/compressor.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/cryptography.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/domain.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/interface.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/persistence.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/popo.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/postgres.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/projection.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/py.typed +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/system.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/__init__.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/application.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/domain.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/persistence.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/tests/postgres_utils.py +0 -0
- {eventsourcing-9.4.3 → eventsourcing-9.4.4}/eventsourcing/utils.py +0 -0
|
@@ -63,7 +63,7 @@ class singledispatchmethod(_singledispatchmethod[_T]): # noqa: N801
|
|
|
63
63
|
|
|
64
64
|
try:
|
|
65
65
|
return self.dispatcher.register(cast("type[Any]", cls), func=method)
|
|
66
|
-
except NameError:
|
|
66
|
+
except (NameError, TypeError): # NameError <= Py3.13, TypeError >= Py3.14
|
|
67
67
|
self.deferred_registrations.append(
|
|
68
68
|
(cls, method) # pyright: ignore [reportArgumentType]
|
|
69
69
|
)
|
|
@@ -600,10 +600,10 @@ class SQLiteTrackingRecorder(SQLiteRecorder, TrackingRecorder):
|
|
|
600
600
|
|
|
601
601
|
c.execute(
|
|
602
602
|
self.insert_tracking_statement,
|
|
603
|
-
|
|
604
|
-
tracking.application_name,
|
|
605
|
-
tracking.notification_id,
|
|
606
|
-
|
|
603
|
+
{
|
|
604
|
+
"application_name": tracking.application_name,
|
|
605
|
+
"notification_id": tracking.notification_id,
|
|
606
|
+
},
|
|
607
607
|
)
|
|
608
608
|
if self.datastore.single_row_tracking:
|
|
609
609
|
fetchone = c.fetchone()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|