代码搜索:sqlalchemy

找到约 184 项符合「sqlalchemy」的源代码

代码结果 184
www.eeworm.com/read/280962/4121179

py zoomark.py

"""Benchmark for SQLAlchemy. An adaptation of Robert Brewers' ZooMark speed tests. """ import datetime import sys import time import testenv; testenv.configure_for_tests() from sqlalchemy import * f
www.eeworm.com/read/280962/4121191

py wsgi.py

#!/usr/bin/python """Uses ``wsgiref``, standard in Python 2.5 and also in the cheeseshop.""" import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * import
www.eeworm.com/read/280962/4121198

py dependency.py

import testenv; testenv.configure_for_tests() import sqlalchemy.topological as topological from sqlalchemy import util from testlib import * class DependencySortTest(TestBase): def assert_sort(s
www.eeworm.com/read/280962/4121236

py labels.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from testlib import * from sqlalchemy.engine import default # TODO: either create a mock dialect with named paramstyle and a sho
www.eeworm.com/read/280962/4121245

py association.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from testlib import * class AssociationTest(TestBase): @testing.uses_deprecated('association o
www.eeworm.com/read/280962/4121267

py productspec.py

import testenv; testenv.configure_for_tests() from datetime import datetime from sqlalchemy import * from sqlalchemy.orm import * from testlib import * class InheritTest(ORMTest): """tests some
www.eeworm.com/read/280962/4121270

py manytomany.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from testlib import * class InheritTest(ORMTest): """deals with inheritance and many-to-many r
www.eeworm.com/read/280962/4121273

py poly_linked_list.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from testlib import * class PolymorphicCircularTest(ORMTest): keep_mappers = True def defi
www.eeworm.com/read/280962/4121276

py selects.py

import testenv; testenv.configure_for_tests() from sqlalchemy import * from sqlalchemy.orm import * from testlib import * from testlib.fixtures import Base class InheritingSelectablesTest(ORMTest):
www.eeworm.com/read/280962/4121288

py transaction.py

import testenv; testenv.configure_for_tests() import sys, time, threading from sqlalchemy import * from sqlalchemy.orm import * from testlib import * class TransactionTest(TestBase): def setUpA