Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5b629420
Commit
5b629420
authored
Dec 23, 2011
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #13577: Built-in methods and functions now have a __qualname__.
Patch by sbt.
parent
d22983d0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
73 additions
and
7 deletions
+73
-7
Include/methodobject.h
Include/methodobject.h
+2
-1
Lib/test/test_funcattrs.py
Lib/test/test_funcattrs.py
+27
-1
Misc/NEWS
Misc/NEWS
+3
-0
Objects/methodobject.c
Objects/methodobject.c
+40
-4
Objects/typeobject.c
Objects/typeobject.c
+1
-1
No files found.
Include/methodobject.h
View file @
5b629420
...
...
@@ -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
...
...
Lib/test/test_funcattrs.py
View file @
5b629420
...
...
@@ -342,11 +342,37 @@ class StaticMethodAttrsTest(unittest.TestCase):
self
.
assertTrue
(
s
.
__func__
is
f
)
class
BuiltinFunctionPropertiesTest
(
unittest
.
TestCase
):
# XXX Not sure where this should really go since I can't find a
# test module specifically for builtin_function_or_method.
def
test_builtin__qualname__
(
self
):
import
time
# builtin function:
self
.
assertEqual
(
len
.
__qualname__
,
'len'
)
self
.
assertEqual
(
time
.
time
.
__qualname__
,
'time'
)
# builtin classmethod:
self
.
assertEqual
(
dict
.
fromkeys
.
__qualname__
,
'dict.fromkeys'
)
self
.
assertEqual
(
float
.
__getformat__
.
__qualname__
,
'float.__getformat__'
)
# builtin staticmethod:
self
.
assertEqual
(
str
.
maketrans
.
__qualname__
,
'str.maketrans'
)
self
.
assertEqual
(
bytes
.
maketrans
.
__qualname__
,
'bytes.maketrans'
)
# builtin bound instance method:
self
.
assertEqual
([
1
,
2
,
3
].
append
.
__qualname__
,
'list.append'
)
self
.
assertEqual
({
'foo'
:
'bar'
}.
pop
.
__qualname__
,
'dict.pop'
)
def
test_main
():
support
.
run_unittest
(
FunctionPropertiesTest
,
InstancemethodAttrTest
,
ArbitraryFunctionAttrTest
,
FunctionDictsTest
,
FunctionDocstringTest
,
CellTest
,
StaticMethodAttrsTest
)
StaticMethodAttrsTest
,
BuiltinFunctionPropertiesTest
)
if
__name__
==
"__main__"
:
test_main
()
Misc/NEWS
View file @
5b629420
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
- Issue #13577: Built-in methods and functions now have a __qualname__.
Patch by sbt.
- Issue #6695: Full garbage collection runs now clear the freelist of set
objects. Initial patch by Matthias Troffaes.
...
...
Objects/methodobject.c
View file @
5b629420
...
...
@@ -44,7 +44,7 @@ PyCFunction_GetFunction(PyObject *op)
PyErr_BadInternalCall
();
return
NULL
;
}
return
((
PyCFunctionObject
*
)
op
)
->
m_ml
->
ml_meth
;
return
PyCFunction_GET_FUNCTION
(
op
)
;
}
PyObject
*
...
...
@@ -54,7 +54,7 @@ PyCFunction_GetSelf(PyObject *op)
PyErr_BadInternalCall
();
return
NULL
;
}
return
((
PyCFunctionObject
*
)
op
)
->
m_self
;
return
PyCFunction_GET_SELF
(
op
)
;
}
int
...
...
@@ -64,7 +64,7 @@ PyCFunction_GetFlags(PyObject *op)
PyErr_BadInternalCall
();
return
-
1
;
}
return
((
PyCFunctionObject
*
)
op
)
->
m_ml
->
ml_flags
;
return
PyCFunction_GET_FLAGS
(
op
)
;
}
PyObject
*
...
...
@@ -151,6 +151,41 @@ meth_get__name__(PyCFunctionObject *m, void *closure)
return
PyUnicode_FromString
(
m
->
m_ml
->
ml_name
);
}
static
PyObject
*
meth_get__qualname__
(
PyCFunctionObject
*
m
,
void
*
closure
)
{
/* If __self__ is a module or NULL, return m.__name__
(e.g. len.__qualname__ == 'len')
If __self__ is a type, return m.__self__.__qualname__ + '.' + m.__name__
(e.g. dict.fromkeys.__qualname__ == 'dict.fromkeys')
Otherwise return type(m.__self__).__qualname__ + '.' + m.__name__
(e.g. [].append.__qualname__ == 'list.append') */
PyObject
*
type
,
*
type_qualname
,
*
res
;
_Py_IDENTIFIER
(
__qualname__
);
if
(
m
->
m_self
==
NULL
||
PyModule_Check
(
m
->
m_self
))
return
PyUnicode_FromString
(
m
->
m_ml
->
ml_name
);
type
=
PyType_Check
(
m
->
m_self
)
?
m
->
m_self
:
(
PyObject
*
)
Py_TYPE
(
m
->
m_self
);
type_qualname
=
_PyObject_GetAttrId
(
type
,
&
PyId___qualname__
);
if
(
type_qualname
==
NULL
)
return
NULL
;
if
(
!
PyUnicode_Check
(
type_qualname
))
{
PyErr_SetString
(
PyExc_TypeError
,
"<method>.__class__."
"__qualname__ is not a unicode object"
);
Py_XDECREF
(
type_qualname
);
return
NULL
;
}
res
=
PyUnicode_FromFormat
(
"%S.%s"
,
type_qualname
,
m
->
m_ml
->
ml_name
);
Py_DECREF
(
type_qualname
);
return
res
;
}
static
int
meth_traverse
(
PyCFunctionObject
*
m
,
visitproc
visit
,
void
*
arg
)
{
...
...
@@ -164,7 +199,7 @@ meth_get__self__(PyCFunctionObject *m, void *closure)
{
PyObject
*
self
;
self
=
m
->
m_self
;
self
=
PyCFunction_GET_SELF
(
m
)
;
if
(
self
==
NULL
)
self
=
Py_None
;
Py_INCREF
(
self
);
...
...
@@ -174,6 +209,7 @@ meth_get__self__(PyCFunctionObject *m, void *closure)
static
PyGetSetDef
meth_getsets
[]
=
{
{
"__doc__"
,
(
getter
)
meth_get__doc__
,
NULL
,
NULL
},
{
"__name__"
,
(
getter
)
meth_get__name__
,
NULL
,
NULL
},
{
"__qualname__"
,
(
getter
)
meth_get__qualname__
,
NULL
,
NULL
},
{
"__self__"
,
(
getter
)
meth_get__self__
,
NULL
,
NULL
},
{
0
}
};
...
...
Objects/typeobject.c
View file @
5b629420
...
...
@@ -3726,7 +3726,7 @@ add_methods(PyTypeObject *type, PyMethodDef *meth)
descr
=
PyDescr_NewClassMethod
(
type
,
meth
);
}
else
if
(
meth
->
ml_flags
&
METH_STATIC
)
{
PyObject
*
cfunc
=
PyCFunction_New
(
meth
,
NULL
);
PyObject
*
cfunc
=
PyCFunction_New
(
meth
,
(
PyObject
*
)
type
);
if
(
cfunc
==
NULL
)
return
-
1
;
descr
=
PyStaticMethod_New
(
cfunc
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment