Initial commit

This commit is contained in:
René Mathieu
2026-01-17 13:49:51 +01:00
commit 0fef8d96c5
1897 changed files with 396119 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import sys
__all__ = ['tomllib']
if sys.version_info >= (3, 11):
import tomllib
else: # pragma: no cover
import tomli as tomllib
if sys.version_info >= (3, 11):
def add_note(ex, note):
ex.add_note(note)
else: # pragma: no cover
def add_note(ex, note):
vars(ex).setdefault('__notes__', []).append(note)