summaryrefslogtreecommitdiff
path: root/Include/methodobject.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-23 12:40:16 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-23 12:40:16 +0100
commit5b62942074f2f6ae57c0e1bd8e4993dff4f5997f (patch)
treebf3f323f4b84a51edae986f2fee3686cc2d4c9bd /Include/methodobject.h
parentd22983d081845009e894dced4c4d835f18755520 (diff)
downloadcpython-git-5b62942074f2f6ae57c0e1bd8e4993dff4f5997f.tar.gz
Issue #13577: Built-in methods and functions now have a __qualname__.
Patch by sbt.
Diffstat (limited to 'Include/methodobject.h')
-rw-r--r--Include/methodobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index 7e67c0bf9a..d798d134e2 100644
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -30,7 +30,8 @@ PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
#define PyCFunction_GET_FUNCTION(func) \
(((PyCFunctionObject *)func) -> m_ml -> ml_meth)
#define PyCFunction_GET_SELF(func) \
- (((PyCFunctionObject *)func) -> m_self)
+ (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \
+ NULL : ((PyCFunctionObject *)func) -> m_self)
#define PyCFunction_GET_FLAGS(func) \
(((PyCFunctionObject *)func) -> m_ml -> ml_flags)
#endif