$47 GRAYBYTE WORDPRESS FILE MANAGER $74

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/usr/lib64/python2.7/site-packages/sqlalchemy/testing/

HOME
Current File : /usr/lib64/python2.7/site-packages/sqlalchemy/testing//pickleable.py
# testing/pickleable.py
# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: https://www.opensource.org/licenses/mit-license.php

"""Classes used in pickling tests, need to be at the module level for
unpickling.
"""

from . import fixtures
from ..schema import Column
from ..types import String


class User(fixtures.ComparableEntity):
    pass


class Order(fixtures.ComparableEntity):
    pass


class Dingaling(fixtures.ComparableEntity):
    pass


class EmailUser(User):
    pass


class Address(fixtures.ComparableEntity):
    pass


# TODO: these are kind of arbitrary....
class Child1(fixtures.ComparableEntity):
    pass


class Child2(fixtures.ComparableEntity):
    pass


class Parent(fixtures.ComparableEntity):
    pass


class Screen(object):
    def __init__(self, obj, parent=None):
        self.obj = obj
        self.parent = parent


class Mixin(object):
    email_address = Column(String)


class AddressWMixin(Mixin, fixtures.ComparableEntity):
    pass


class Foo(object):
    def __init__(self, moredata, stuff="im stuff"):
        self.data = "im data"
        self.stuff = stuff
        self.moredata = moredata

    __hash__ = object.__hash__

    def __eq__(self, other):
        return (
            other.data == self.data
            and other.stuff == self.stuff
            and other.moredata == self.moredata
        )


class Bar(object):
    def __init__(self, x, y):
        self.x = x
        self.y = y

    __hash__ = object.__hash__

    def __eq__(self, other):
        return (
            other.__class__ is self.__class__
            and other.x == self.x
            and other.y == self.y
        )

    def __str__(self):
        return "Bar(%d, %d)" % (self.x, self.y)


class OldSchool:
    def __init__(self, x, y):
        self.x = x
        self.y = y

    def __eq__(self, other):
        return (
            other.__class__ is self.__class__
            and other.x == self.x
            and other.y == self.y
        )


class OldSchoolWithoutCompare:
    def __init__(self, x, y):
        self.x = x
        self.y = y


class BarWithoutCompare(object):
    def __init__(self, x, y):
        self.x = x
        self.y = y

    def __str__(self):
        return "Bar(%d, %d)" % (self.x, self.y)


class NotComparable(object):
    def __init__(self, data):
        self.data = data

    def __hash__(self):
        return id(self)

    def __eq__(self, other):
        return NotImplemented

    def __ne__(self, other):
        return NotImplemented


class BrokenComparable(object):
    def __init__(self, data):
        self.data = data

    def __hash__(self):
        return id(self)

    def __eq__(self, other):
        raise NotImplementedError

    def __ne__(self, other):
        raise NotImplementedError

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
23 Sep 2024 10.41 AM
root / root
0755
plugin
--
23 Sep 2024 10.41 AM
root / root
0755
suite
--
23 Sep 2024 10.41 AM
root / root
0755
__init__.py
2.914 KB
5 Sep 2024 10.50 PM
root / root
0644
__init__.pyc
3.738 KB
23 Sep 2024 10.41 AM
root / root
0644
assertions.py
28.454 KB
5 Sep 2024 10.50 PM
root / root
0644
assertions.pyc
32.271 KB
23 Sep 2024 10.41 AM
root / root
0644
assertsql.py
14.613 KB
5 Sep 2024 10.50 PM
root / root
0644
assertsql.pyc
15.358 KB
23 Sep 2024 10.41 AM
root / root
0644
asyncio.py
3.585 KB
5 Sep 2024 10.50 PM
root / root
0644
asyncio.pyc
3.564 KB
23 Sep 2024 10.41 AM
root / root
0644
config.py
9.439 KB
5 Sep 2024 10.50 PM
root / root
0644
config.pyc
12.109 KB
23 Sep 2024 10.41 AM
root / root
0644
engines.py
13.078 KB
5 Sep 2024 10.50 PM
root / root
0644
engines.pyc
17.368 KB
23 Sep 2024 10.41 AM
root / root
0644
entities.py
3.177 KB
5 Sep 2024 10.50 PM
root / root
0644
entities.pyc
3.331 KB
23 Sep 2024 10.41 AM
root / root
0644
exclusions.py
13.001 KB
5 Sep 2024 10.50 PM
root / root
0644
exclusions.pyc
19.058 KB
23 Sep 2024 10.41 AM
root / root
0644
fixtures.py
30.199 KB
5 Sep 2024 10.50 PM
root / root
0644
fixtures.pyc
30.239 KB
23 Sep 2024 10.41 AM
root / root
0644
mock.py
0.873 KB
5 Sep 2024 10.50 PM
root / root
0644
mock.pyc
0.749 KB
23 Sep 2024 10.41 AM
root / root
0644
pickleable.py
2.818 KB
5 Sep 2024 10.50 PM
root / root
0644
pickleable.pyc
7.781 KB
23 Sep 2024 10.41 AM
root / root
0644
profiling.py
10.401 KB
5 Sep 2024 10.50 PM
root / root
0644
profiling.pyc
9.858 KB
23 Sep 2024 10.41 AM
root / root
0644
provision.py
12.029 KB
5 Sep 2024 10.50 PM
root / root
0644
provision.pyc
13.639 KB
23 Sep 2024 10.41 AM
root / root
0644
requirements.py
43.585 KB
5 Sep 2024 10.50 PM
root / root
0644
requirements.pyc
69.734 KB
23 Sep 2024 10.41 AM
root / root
0644
schema.py
6.391 KB
5 Sep 2024 10.50 PM
root / root
0644
schema.pyc
7.188 KB
23 Sep 2024 10.41 AM
root / root
0644
util.py
13.677 KB
5 Sep 2024 10.50 PM
root / root
0644
util.pyc
17.46 KB
23 Sep 2024 10.41 AM
root / root
0644
warnings.py
2.411 KB
5 Sep 2024 10.50 PM
root / root
0644
warnings.pyc
2.457 KB
23 Sep 2024 10.41 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF