diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-12 22:29:36 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-02-12 22:29:36 -0500 |
commit | 15520d5d81b9c45f6735df82ce0d593e93ad2bdf (patch) | |
tree | f636bc37ce0200c270e81d9223b460dd2c9f9ef8 /lib | |
parent | 838d78af711ccda918a702e01b5630b787cec453 (diff) | |
download | sqlalchemy-15520d5d81b9c45f6735df82ce0d593e93ad2bdf.tar.gz |
fix this directive for py3k
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sqlalchemy/util/langhelpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/langhelpers.py b/lib/sqlalchemy/util/langhelpers.py index 7a7713d1e..1ed9c6c7b 100644 --- a/lib/sqlalchemy/util/langhelpers.py +++ b/lib/sqlalchemy/util/langhelpers.py @@ -327,7 +327,7 @@ def monkeypatch_proxied_specials(into_cls, from_cls, skip=None, only=None, def methods_equivalent(meth1, meth2): """Return True if the two methods are the same implementation.""" - # Py3k + # Py3K #return getattr(meth1, '__func__', meth1) is getattr(meth2, '__func__', meth2) # Py2K return getattr(meth1, 'im_func', meth1) is getattr(meth2, 'im_func', meth2) |