summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-02-12 22:29:36 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-02-12 22:29:36 -0500
commit15520d5d81b9c45f6735df82ce0d593e93ad2bdf (patch)
treef636bc37ce0200c270e81d9223b460dd2c9f9ef8 /lib
parent838d78af711ccda918a702e01b5630b787cec453 (diff)
downloadsqlalchemy-15520d5d81b9c45f6735df82ce0d593e93ad2bdf.tar.gz
fix this directive for py3k
Diffstat (limited to 'lib')
-rw-r--r--lib/sqlalchemy/util/langhelpers.py2
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)