diff options
author | 2009-12-30 13:17:03 +0000 | |
---|---|---|
committer | 2009-12-30 13:17:03 +0000 | |
commit | 27be3f839084924df94b17af23a6c0c7bc24ca4a (patch) | |
tree | d1b75f91e04f767cd5b2224ae01ce777c5bb010f /dev-python/sqlalchemy/files | |
parent | sparc stable wrt #293332 (diff) | |
download | gentoo-2-27be3f839084924df94b17af23a6c0c7bc24ca4a.tar.gz gentoo-2-27be3f839084924df94b17af23a6c0c7bc24ca4a.tar.bz2 gentoo-2-27be3f839084924df94b17af23a6c0c7bc24ca4a.zip |
Delete older ebuilds.
Diffstat (limited to 'dev-python/sqlalchemy/files')
-rw-r--r-- | dev-python/sqlalchemy/files/sqlalchemy-0.5.5_tests.patch | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/dev-python/sqlalchemy/files/sqlalchemy-0.5.5_tests.patch b/dev-python/sqlalchemy/files/sqlalchemy-0.5.5_tests.patch deleted file mode 100644 index f9cde5b6356e..000000000000 --- a/dev-python/sqlalchemy/files/sqlalchemy-0.5.5_tests.patch +++ /dev/null @@ -1,82 +0,0 @@ -diff -uNr SQLAlchemy-0.5.5.orig/test/aaa_profiling/test_memusage.py SQLAlchemy-0.5.5/test/aaa_profiling/test_memusage.py ---- SQLAlchemy-0.5.5.orig/test/aaa_profiling/test_memusage.py 2009-07-13 19:01:22.000000000 +0000 -+++ SQLAlchemy-0.5.5/test/aaa_profiling/test_memusage.py 2009-07-16 23:08:58.000000000 +0000 -@@ -305,42 +305,43 @@ - assert_no_mappers() - - def test_join_cache(self): -- metadata = MetaData(testing.db) -- -- table1 = Table("table1", metadata, -- Column('id', Integer, primary_key=True), -- Column('data', String(30)) -- ) -+ pass -+ #metadata = MetaData(testing.db) - -- table2 = Table("table2", metadata, -- Column('id', Integer, primary_key=True), -- Column('data', String(30)), -- Column('t1id', Integer, ForeignKey('table1.id')) -- ) -- -- class Foo(object): -- pass -- -- class Bar(object): -- pass -- -- mapper(Foo, table1, properties={ -- 'bars':relation(mapper(Bar, table2)) -- }) -- metadata.create_all() -- -- session = sessionmaker() -- -- @profile_memory -- def go(): -- s = table2.select() -- sess = session() -- sess.query(Foo).join((s, Foo.bars)).all() -- sess.rollback() -- try: -- go() -- finally: -- metadata.drop_all() -+ #table1 = Table("table1", metadata, -+ # Column('id', Integer, primary_key=True), -+ # Column('data', String(30)) -+ # ) -+ -+ #table2 = Table("table2", metadata, -+ # Column('id', Integer, primary_key=True), -+ # Column('data', String(30)), -+ # Column('t1id', Integer, ForeignKey('table1.id')) -+ # ) -+ -+ #class Foo(object): -+ # pass -+ -+ #class Bar(object): -+ # pass -+ -+ #mapper(Foo, table1, properties={ -+ # 'bars':relation(mapper(Bar, table2)) -+ #}) -+ #metadata.create_all() -+ -+ #session = sessionmaker() -+ -+ #@profile_memory -+ #def go(): -+ # s = table2.select() -+ # sess = session() -+ # sess.query(Foo).join((s, Foo.bars)).all() -+ # sess.rollback() -+ #try: -+ # go() -+ #finally: -+ # metadata.drop_all() - - - def test_mutable_identity(self): |