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
b4142f71
Commit
b4142f71
authored
Mar 10, 2015
by
Marius Wachtler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make tuple more subclassing friendly
parent
f3fb2d82
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
18 deletions
+27
-18
src/runtime/inline/tuple.cpp
src/runtime/inline/tuple.cpp
+1
-1
src/runtime/tuple.cpp
src/runtime/tuple.cpp
+16
-17
test/tests/tuples.py
test/tests/tuples.py
+10
-0
No files found.
src/runtime/inline/tuple.cpp
View file @
b4142f71
...
...
@@ -27,7 +27,7 @@ Box* tupleIterIter(Box* s) {
}
Box
*
tupleIter
(
Box
*
s
)
{
assert
(
s
->
cls
==
tuple_cls
);
assert
(
isSubclass
(
s
->
cls
,
tuple_cls
)
);
BoxedTuple
*
self
=
static_cast
<
BoxedTuple
*>
(
s
);
return
new
BoxedTupleIterator
(
self
);
}
...
...
src/runtime/tuple.cpp
View file @
b4142f71
...
...
@@ -85,7 +85,7 @@ extern "C" PyObject* PyTuple_GetItem(PyObject* op, Py_ssize_t i) noexcept {
}
Box
*
tupleGetitemSlice
(
BoxedTuple
*
self
,
BoxedSlice
*
slice
)
{
assert
(
self
->
cls
==
tuple_cls
);
assert
(
isSubclass
(
self
->
cls
,
tuple_cls
)
);
assert
(
slice
->
cls
==
slice_cls
);
i64
start
,
stop
,
step
,
length
;
...
...
@@ -94,7 +94,7 @@ Box* tupleGetitemSlice(BoxedTuple* self, BoxedSlice* slice) {
}
extern
"C"
PyObject
*
PyTuple_GetSlice
(
PyObject
*
p
,
Py_ssize_t
low
,
Py_ssize_t
high
)
noexcept
{
RELEASE_ASSERT
(
p
->
cls
==
tuple_cls
,
""
);
// could it be a subclass or something else?
RELEASE_ASSERT
(
isSubclass
(
p
->
cls
,
tuple_cls
),
""
);
BoxedTuple
*
t
=
static_cast
<
BoxedTuple
*>
(
p
);
Py_ssize_t
n
=
t
->
elts
.
size
();
...
...
@@ -123,7 +123,7 @@ Box* tupleGetitem(BoxedTuple* self, Box* slice) {
}
Box
*
tupleAdd
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
...
...
@@ -159,7 +159,7 @@ Box* tupleMul(BoxedTuple* self, Box* rhs) {
}
Box
*
tupleLen
(
BoxedTuple
*
t
)
{
assert
(
t
->
cls
==
tuple_cls
);
assert
(
isSubclass
(
t
->
cls
,
tuple_cls
)
);
return
boxInt
(
t
->
elts
.
size
());
}
...
...
@@ -169,7 +169,7 @@ extern "C" Py_ssize_t PyTuple_Size(PyObject* op) noexcept {
}
Box
*
tupleRepr
(
BoxedTuple
*
t
)
{
assert
(
t
->
cls
==
tuple_cls
);
assert
(
isSubclass
(
t
->
cls
,
tuple_cls
)
);
std
::
ostringstream
os
(
""
);
os
<<
"("
;
...
...
@@ -231,49 +231,49 @@ Box* _tupleCmp(BoxedTuple* lhs, BoxedTuple* rhs, AST_TYPE::AST_TYPE op_type) {
}
Box
*
tupleLt
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
return
_tupleCmp
(
self
,
static_cast
<
BoxedTuple
*>
(
rhs
),
AST_TYPE
::
Lt
);
}
Box
*
tupleLe
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
return
_tupleCmp
(
self
,
static_cast
<
BoxedTuple
*>
(
rhs
),
AST_TYPE
::
LtE
);
}
Box
*
tupleGt
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
return
_tupleCmp
(
self
,
static_cast
<
BoxedTuple
*>
(
rhs
),
AST_TYPE
::
Gt
);
}
Box
*
tupleGe
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
return
_tupleCmp
(
self
,
static_cast
<
BoxedTuple
*>
(
rhs
),
AST_TYPE
::
GtE
);
}
Box
*
tupleEq
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
return
_tupleCmp
(
self
,
static_cast
<
BoxedTuple
*>
(
rhs
),
AST_TYPE
::
Eq
);
}
Box
*
tupleNe
(
BoxedTuple
*
self
,
Box
*
rhs
)
{
if
(
rhs
->
cls
!=
tuple_cls
)
{
if
(
!
isSubclass
(
rhs
->
cls
,
tuple_cls
)
)
{
return
NotImplemented
;
}
return
_tupleCmp
(
self
,
static_cast
<
BoxedTuple
*>
(
rhs
),
AST_TYPE
::
NotEq
);
}
Box
*
tupleNonzero
(
BoxedTuple
*
self
)
{
RELEASE_ASSERT
(
self
->
cls
==
tuple_cls
,
""
);
RELEASE_ASSERT
(
isSubclass
(
self
->
cls
,
tuple_cls
)
,
""
);
return
boxBool
(
self
->
elts
.
size
()
!=
0
);
}
...
...
@@ -290,7 +290,7 @@ Box* tupleContains(BoxedTuple* self, Box* elt) {
}
Box
*
tupleHash
(
BoxedTuple
*
self
)
{
assert
(
self
->
cls
==
tuple_cls
);
assert
(
isSubclass
(
self
->
cls
,
tuple_cls
)
);
int64_t
rtn
=
3527539
;
for
(
Box
*
e
:
self
->
elts
)
{
...
...
@@ -391,10 +391,9 @@ void setupTuple() {
tuple_cls
->
giveAttr
(
"__new__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
tupleNew
,
UNKNOWN
,
1
,
0
,
true
,
true
)));
CLFunction
*
getitem
=
createRTFunction
(
2
,
0
,
0
,
0
);
addRTFunction
(
getitem
,
(
void
*
)
tupleGetitemInt
,
UNKNOWN
,
std
::
vector
<
ConcreteCompilerType
*>
{
BOXED_TUPLE
,
BOXED_INT
});
addRTFunction
(
getitem
,
(
void
*
)
tupleGetitemSlice
,
UNKNOWN
,
std
::
vector
<
ConcreteCompilerType
*>
{
BOXED_TUPLE
,
SLICE
});
addRTFunction
(
getitem
,
(
void
*
)
tupleGetitem
,
UNKNOWN
,
std
::
vector
<
ConcreteCompilerType
*>
{
BOXED_TUPLE
,
UNKNOWN
});
addRTFunction
(
getitem
,
(
void
*
)
tupleGetitemInt
,
UNKNOWN
,
std
::
vector
<
ConcreteCompilerType
*>
{
UNKNOWN
,
BOXED_INT
});
addRTFunction
(
getitem
,
(
void
*
)
tupleGetitemSlice
,
UNKNOWN
,
std
::
vector
<
ConcreteCompilerType
*>
{
UNKNOWN
,
SLICE
});
addRTFunction
(
getitem
,
(
void
*
)
tupleGetitem
,
UNKNOWN
,
std
::
vector
<
ConcreteCompilerType
*>
{
UNKNOWN
,
UNKNOWN
});
tuple_cls
->
giveAttr
(
"__getitem__"
,
new
BoxedFunction
(
getitem
));
tuple_cls
->
giveAttr
(
"__contains__"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
tupleContains
,
BOXED_BOOL
,
2
)));
...
...
test/tests/tuples.py
View file @
b4142f71
...
...
@@ -71,6 +71,16 @@ t((T(1),), (T(2),1))
print
(
"hello"
,
"world"
,
[
"test"
])
class
MyTuple
(
tuple
):
pass
mt
=
MyTuple
((
1
,
2
))
print
mt
<
(
1
,
2
)
print
(
1
,
2
)
<
mt
print
mt
[
1
]
print
mt
+
(
1
,)
print
list
(
mt
)
print
len
(
mt
)
# __add__
print
()
+
()
print
(
1
,
2
,
3
)
+
()
...
...
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