]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix this directive for py3k
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 13 Feb 2011 03:29:36 +0000 (22:29 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 13 Feb 2011 03:29:36 +0000 (22:29 -0500)
lib/sqlalchemy/util/langhelpers.py

index 7a7713d1e2d051bdc320ebd754f30bc1bcea8df5..1ed9c6c7bb688a76f9f46f5acebb6df492a6e117 100644 (file)
@@ -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)