This commit is contained in:
2025-09-27 18:18:37 -04:00
parent 055c330f29
commit 244775f689
2276 changed files with 422897 additions and 30 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)