Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
a4722ed0
Commit
a4722ed0
authored
Feb 17, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow rewriting 1-arg calls to type()
parent
12f29135
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
src/runtime/objmodel.cpp
src/runtime/objmodel.cpp
+13
-4
No files found.
src/runtime/objmodel.cpp
View file @
a4722ed0
...
...
@@ -3665,6 +3665,7 @@ Box* typeCallInternal(BoxedFunctionBase* f, CallRewriteArgs* rewrite_args, ArgPa
}
}
bool
type_new_special_case
;
if
(
rewrite_args
)
{
bool
ok
=
false
;
for
(
auto
b
:
allowable_news
)
{
...
...
@@ -3681,7 +3682,9 @@ Box* typeCallInternal(BoxedFunctionBase* f, CallRewriteArgs* rewrite_args, ArgPa
ok
=
true
;
}
if
(
!
ok
)
{
type_new_special_case
=
(
cls
==
type_cls
&&
argspec
==
ArgPassSpec
(
2
));
if
(
!
ok
&&
!
type_new_special_case
)
{
// Uncomment this to try to find __new__ functions that we could either white- or blacklist:
// ASSERT(cls->is_user_defined || cls == type_cls, "Does '%s' have a well-behaved __new__? if so, add to
// allowable_news, otherwise add to the blacklist in this assert", cls->tp_name);
...
...
@@ -3754,8 +3757,9 @@ Box* typeCallInternal(BoxedFunctionBase* f, CallRewriteArgs* rewrite_args, ArgPa
}
}
ASSERT
(
made
->
cls
==
cls
,
"We should only have allowed the rewrite to continue if we were guaranteed that made "
"would have class cls!"
);
ASSERT
(
made
->
cls
==
cls
||
type_new_special_case
,
"We should only have allowed the rewrite to continue if we were guaranteed that made "
"would have class cls!"
);
}
else
{
made
=
runtimeCallInternal
(
new_attr
,
NULL
,
new_argspec
,
cls
,
arg2
,
arg3
,
args
,
keyword_names
);
}
...
...
@@ -3763,8 +3767,13 @@ Box* typeCallInternal(BoxedFunctionBase* f, CallRewriteArgs* rewrite_args, ArgPa
assert
(
made
);
// Special-case (also a special case in CPython): if we just called type.__new__(arg), don't call __init__
if
(
cls
==
type_cls
&&
argspec
==
ArgPassSpec
(
2
))
if
(
cls
==
type_cls
&&
argspec
==
ArgPassSpec
(
2
))
{
if
(
rewrite_args
)
{
rewrite_args
->
out_success
=
true
;
rewrite_args
->
out_rtn
=
r_made
;
}
return
made
;
}
// If __new__ returns a subclass, supposed to call that subclass's __init__.
// If __new__ returns a non-subclass, not supposed to call __init__.
...
...
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