commit fc91486 在新增模板中加了回查 SELECT:
SELECT * FROM tbl WHERE {{summary[0].pkey}} = ${id}$
但 model 的 summary 里主键字段叫 primary 不是 pkey,
Jinja2 取不到返回 None,渲染成 ${None}$,
sqlor 处理后变成 WHERE None = %s。
改为 {{summary[0].primary[0]}},取 primary 数组第一个元素。
35 lines
990 B
Python
35 lines
990 B
Python
from pip._vendor.packaging.version import parse as parse_version
|
|
|
|
from pip._internal.models.link import Link
|
|
from pip._internal.utils.models import KeyBasedCompareMixin
|
|
|
|
|
|
class InstallationCandidate(KeyBasedCompareMixin):
|
|
"""Represents a potential "candidate" for installation."""
|
|
|
|
__slots__ = ["name", "version", "link"]
|
|
|
|
def __init__(self, name: str, version: str, link: Link) -> None:
|
|
self.name = name
|
|
self.version = parse_version(version)
|
|
self.link = link
|
|
|
|
super().__init__(
|
|
key=(self.name, self.version, self.link),
|
|
defining_class=InstallationCandidate,
|
|
)
|
|
|
|
def __repr__(self) -> str:
|
|
return "<InstallationCandidate({!r}, {!r}, {!r})>".format(
|
|
self.name,
|
|
self.version,
|
|
self.link,
|
|
)
|
|
|
|
def __str__(self) -> str:
|
|
return "{!r} candidate (version {} at {})".format(
|
|
self.name,
|
|
self.version,
|
|
self.link,
|
|
)
|