添加注册登录功能

This commit is contained in:
2025-08-29 00:34:40 +08:00
parent 09065f2ce7
commit 2fe3474d9e
3060 changed files with 29217 additions and 87137 deletions

View File

@@ -269,7 +269,7 @@ from .types import Uuid as Uuid
from .types import VARBINARY as VARBINARY
from .types import VARCHAR as VARCHAR
__version__ = "2.0.38"
__version__ = "2.0.43"
def __go(lcls: Any) -> None:
@@ -281,14 +281,3 @@ def __go(lcls: Any) -> None:
__go(locals())
def __getattr__(name: str) -> Any:
if name == "SingleonThreadPool":
_util.warn_deprecated(
"SingleonThreadPool was a typo in the v2 series. "
"Please use the correct SingletonThreadPool name.",
"2.0.24",
)
return SingletonThreadPool
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")