Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
c9756622
Commit
c9756622
authored
May 16, 2016
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add "__module__" attribute to coroutines and generators
parent
20c501a3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
10 deletions
+26
-10
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+3
-2
Cython/Utility/Coroutine.c
Cython/Utility/Coroutine.c
+14
-8
tests/run/test_coroutines_pep492.pyx
tests/run/test_coroutines_pep492.pyx
+9
-0
No files found.
Cython/Compiler/Nodes.py
View file @
c9756622
...
...
@@ -3969,12 +3969,13 @@ class GeneratorDefNode(DefNode):
body_cname
=
self
.
gbody
.
entry
.
func_cname
name
=
code
.
intern_identifier
(
self
.
name
)
qualname
=
code
.
intern_identifier
(
self
.
qualname
)
module_name
=
code
.
intern_identifier
(
self
.
module_name
)
code
.
putln
(
'{'
)
code
.
putln
(
'__pyx_CoroutineObject *gen = __Pyx_%s_New('
'(__pyx_coroutine_body_t) %s, (PyObject *) %s, %s, %s); %s'
%
(
'(__pyx_coroutine_body_t) %s, (PyObject *) %s, %s, %s
, %s
); %s'
%
(
'Coroutine'
if
self
.
is_coroutine
else
'Generator'
,
body_cname
,
Naming
.
cur_scope_cname
,
name
,
qualname
,
body_cname
,
Naming
.
cur_scope_cname
,
name
,
qualname
,
module_name
,
code
.
error_goto_if_null
(
'gen'
,
self
.
pos
)))
code
.
put_decref
(
Naming
.
cur_scope_cname
,
py_object_type
)
if
self
.
requires_classobj
:
...
...
Cython/Utility/Coroutine.c
View file @
c9756622
...
...
@@ -264,13 +264,15 @@ typedef struct {
PyObject
*
yieldfrom
;
PyObject
*
gi_name
;
PyObject
*
gi_qualname
;
PyObject
*
gi_modulename
;
int
resume_label
;
// using T_BOOL for property below requires char value
char
is_running
;
}
__pyx_CoroutineObject
;
static
__pyx_CoroutineObject
*
__Pyx__Coroutine_New
(
PyTypeObject
*
type
,
__pyx_coroutine_body_t
body
,
PyObject
*
closure
,
PyObject
*
name
,
PyObject
*
qualname
);
/*proto*/
static
__pyx_CoroutineObject
*
__Pyx__Coroutine_New
(
PyTypeObject
*
type
,
__pyx_coroutine_body_t
body
,
PyObject
*
closure
,
PyObject
*
name
,
PyObject
*
qualname
,
PyObject
*
module_name
);
/*proto*/
static
int
__Pyx_Coroutine_clear
(
PyObject
*
self
);
/*proto*/
#if 1 || PY_VERSION_HEX < 0x030300B0
...
...
@@ -287,8 +289,8 @@ static PyTypeObject *__pyx_CoroutineType = 0;
static
PyTypeObject
*
__pyx_CoroutineAwaitType
=
0
;
#define __Pyx_Coroutine_CheckExact(obj) (Py_TYPE(obj) == __pyx_CoroutineType)
#define __Pyx_Coroutine_New(body, closure, name, qualname) \
__Pyx__Coroutine_New(__pyx_CoroutineType, body, closure, name, qualname)
#define __Pyx_Coroutine_New(body, closure, name, qualname
, module_name
) \
__Pyx__Coroutine_New(__pyx_CoroutineType, body, closure, name, qualname
, module_name
)
static
int
__pyx_Coroutine_init
(
void
);
/*proto*/
static
PyObject
*
__Pyx__Coroutine_await
(
PyObject
*
coroutine
);
/*proto*/
...
...
@@ -300,8 +302,8 @@ static PyObject *__Pyx__Coroutine_await(PyObject *coroutine); /*proto*/
static
PyTypeObject
*
__pyx_GeneratorType
=
0
;
#define __Pyx_Generator_CheckExact(obj) (Py_TYPE(obj) == __pyx_GeneratorType)
#define __Pyx_Generator_New(body, closure, name, qualname) \
__Pyx__Coroutine_New(__pyx_GeneratorType, body, closure, name, qualname)
#define __Pyx_Generator_New(body, closure, name, qualname
, module_name
) \
__Pyx__Coroutine_New(__pyx_GeneratorType, body, closure, name, qualname
, module_name
)
static
PyObject
*
__Pyx_Generator_Next
(
PyObject
*
self
);
static
int
__pyx_Generator_init
(
void
);
/*proto*/
...
...
@@ -921,8 +923,9 @@ __Pyx_Coroutine_set_qualname(__pyx_CoroutineObject *self, PyObject *value)
return
0
;
}
static
__pyx_CoroutineObject
*
__Pyx__Coroutine_New
(
PyTypeObject
*
type
,
__pyx_coroutine_body_t
body
,
PyObject
*
closure
,
PyObject
*
name
,
PyObject
*
qualname
)
{
static
__pyx_CoroutineObject
*
__Pyx__Coroutine_New
(
PyTypeObject
*
type
,
__pyx_coroutine_body_t
body
,
PyObject
*
closure
,
PyObject
*
name
,
PyObject
*
qualname
,
PyObject
*
module_name
)
{
__pyx_CoroutineObject
*
gen
=
PyObject_GC_New
(
__pyx_CoroutineObject
,
type
);
if
(
gen
==
NULL
)
...
...
@@ -943,6 +946,8 @@ static __pyx_CoroutineObject *__Pyx__Coroutine_New(PyTypeObject* type, __pyx_cor
gen
->
gi_qualname
=
qualname
;
Py_XINCREF
(
name
);
gen
->
gi_name
=
name
;
Py_XINCREF
(
module_name
);
gen
->
gi_modulename
=
module_name
;
PyObject_GC_Track
(
gen
);
return
gen
;
...
...
@@ -1183,6 +1188,7 @@ static PyMemberDef __pyx_Coroutine_memberlist[] = {
{(
char
*
)
"cr_running"
,
T_BOOL
,
offsetof
(
__pyx_CoroutineObject
,
is_running
),
READONLY
,
NULL
},
{(
char
*
)
"cr_await"
,
T_OBJECT
,
offsetof
(
__pyx_CoroutineObject
,
yieldfrom
),
READONLY
,
(
char
*
)
PyDoc_STR
(
"object being awaited, or None"
)},
{(
char
*
)
"__module__"
,
T_OBJECT
,
offsetof
(
__pyx_CoroutineObject
,
gi_modulename
),
PY_WRITE_RESTRICTED
,
0
},
{
0
,
0
,
0
,
0
,
0
}
};
...
...
tests/run/test_coroutines_pep492.pyx
View file @
c9756622
...
...
@@ -475,6 +475,15 @@ class CoroutineTest(unittest.TestCase):
def
gen
():
yield
self
.
assertFalse
(
hasattr
(
gen
,
'__await__'
))
def
test_func_attributes
(
self
):
async
def
foo
():
return
10
f
=
foo
()
self
.
assertEqual
(
f
.
__name__
,
'foo'
)
self
.
assertEqual
(
f
.
__qualname__
,
'CoroutineTest.test_func_attributes.<locals>.foo'
)
self
.
assertEqual
(
f
.
__module__
,
'test_coroutines_pep492'
)
def
test_func_1
(
self
):
async
def
foo
():
return
10
...
...
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