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
25922a87
Commit
25922a87
authored
Mar 11, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'django_dependencies'
parents
d544b623
bc62488a
Changes
17
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
541 additions
and
101 deletions
+541
-101
from_cpython/Include/object.h
from_cpython/Include/object.h
+2
-0
from_cpython/Lib/warnings.py
from_cpython/Lib/warnings.py
+6
-0
src/capi/abstract.cpp
src/capi/abstract.cpp
+33
-1
src/capi/modsupport.cpp
src/capi/modsupport.cpp
+51
-0
src/capi/typeobject.cpp
src/capi/typeobject.cpp
+2
-0
src/runtime/builtin_modules/builtins.cpp
src/runtime/builtin_modules/builtins.cpp
+2
-2
src/runtime/capi.cpp
src/runtime/capi.cpp
+0
-24
src/runtime/objmodel.cpp
src/runtime/objmodel.cpp
+6
-63
src/runtime/set.cpp
src/runtime/set.cpp
+10
-0
src/runtime/types.cpp
src/runtime/types.cpp
+358
-8
src/runtime/types.h
src/runtime/types.h
+5
-0
test/tests/collections_test.py
test/tests/collections_test.py
+1
-0
test/tests/dict_setting.py
test/tests/dict_setting.py
+25
-0
test/tests/dir.py
test/tests/dir.py
+9
-3
test/tests/object_reduce.py
test/tests/object_reduce.py
+14
-0
test/tests/set.py
test/tests/set.py
+5
-0
test/tests/special_getattrs.py
test/tests/special_getattrs.py
+12
-0
No files found.
from_cpython/Include/object.h
View file @
25922a87
...
...
@@ -498,6 +498,8 @@ PyAPI_DATA(PyTypeObject*) type_cls;
// Pyston change: this is no longer a static object
//PyAPI_DATA(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */
//PyAPI_DATA(PyTypeObject) PySuper_Type; /* built-in 'super' */
PyAPI_DATA
(
PyTypeObject
*
)
object_cls
;
#define PyBaseObject_Type (*object_cls)
// Pyston changes: these aren't direct macros any more [they potentially could be though]
PyAPI_FUNC
(
bool
)
_PyType_Check
(
PyObject
*
)
PYSTON_NOEXCEPT
;
...
...
from_cpython/Lib/warnings.py
View file @
25922a87
...
...
@@ -183,6 +183,12 @@ def warn(message, category=None, stacklevel=1):
assert
issubclass
(
category
,
Warning
)
# Get context information
try
:
# Pyston change: manually skip the call to _getframe.
# A ValueError() is supposed to specify that the "depth" argument is greater
# than the stack level, so it doesn't seem appropriate for us to throw as
# a signal that it's unimplemented.
raise
ValueError
()
caller
=
sys
.
_getframe
(
stacklevel
)
except
ValueError
:
globals
=
sys
.
__dict__
...
...
src/capi/abstract.cpp
View file @
25922a87
...
...
@@ -521,7 +521,39 @@ static PyObject* call_function_tail(PyObject* callable, PyObject* args) {
}
extern
"C"
PyObject
*
PyObject_CallMethod
(
PyObject
*
o
,
const
char
*
name
,
const
char
*
format
,
...)
noexcept
{
Py_FatalError
(
"unimplemented"
);
va_list
va
;
PyObject
*
args
;
PyObject
*
func
=
NULL
;
PyObject
*
retval
=
NULL
;
if
(
o
==
NULL
||
name
==
NULL
)
return
null_error
();
func
=
PyObject_GetAttrString
(
o
,
name
);
if
(
func
==
NULL
)
{
PyErr_SetString
(
PyExc_AttributeError
,
name
);
return
0
;
}
if
(
!
PyCallable_Check
(
func
))
{
type_error
(
"attribute of type '%.200s' is not callable"
,
func
);
goto
exit
;
}
if
(
format
&&
*
format
)
{
va_start
(
va
,
format
);
args
=
Py_VaBuildValue
(
format
,
va
);
va_end
(
va
);
}
else
args
=
PyTuple_New
(
0
);
retval
=
call_function_tail
(
func
,
args
);
exit:
/* args gets consumed in call_function_tail */
Py_XDECREF
(
func
);
return
retval
;
}
extern
"C"
PyObject
*
PyObject_CallMethodObjArgs
(
PyObject
*
callable
,
PyObject
*
name
,
...)
noexcept
{
...
...
src/capi/modsupport.cpp
View file @
25922a87
...
...
@@ -432,6 +432,57 @@ extern "C" int PyModule_AddIntConstant(PyObject* _m, const char* name, long valu
return
PyModule_AddObject
(
_m
,
name
,
boxInt
(
value
));
}
extern
"C"
PyObject
*
PyEval_CallMethod
(
PyObject
*
obj
,
const
char
*
methodname
,
const
char
*
format
,
...)
noexcept
{
va_list
vargs
;
PyObject
*
meth
;
PyObject
*
args
;
PyObject
*
res
;
meth
=
PyObject_GetAttrString
(
obj
,
methodname
);
if
(
meth
==
NULL
)
return
NULL
;
va_start
(
vargs
,
format
);
args
=
Py_VaBuildValue
(
format
,
vargs
);
va_end
(
vargs
);
if
(
args
==
NULL
)
{
Py_DECREF
(
meth
);
return
NULL
;
}
res
=
PyEval_CallObject
(
meth
,
args
);
Py_DECREF
(
meth
);
Py_DECREF
(
args
);
return
res
;
}
extern
"C"
PyObject
*
PyEval_CallObjectWithKeywords
(
PyObject
*
func
,
PyObject
*
arg
,
PyObject
*
kw
)
noexcept
{
PyObject
*
result
;
if
(
arg
==
NULL
)
{
arg
=
PyTuple_New
(
0
);
if
(
arg
==
NULL
)
return
NULL
;
}
else
if
(
!
PyTuple_Check
(
arg
))
{
PyErr_SetString
(
PyExc_TypeError
,
"argument list must be a tuple"
);
return
NULL
;
}
else
Py_INCREF
(
arg
);
if
(
kw
!=
NULL
&&
!
PyDict_Check
(
kw
))
{
PyErr_SetString
(
PyExc_TypeError
,
"keyword list must be a dictionary"
);
Py_DECREF
(
arg
);
return
NULL
;
}
result
=
PyObject_Call
(
func
,
arg
,
kw
);
Py_DECREF
(
arg
);
return
result
;
}
}
// namespace pyston
src/capi/typeobject.cpp
View file @
25922a87
...
...
@@ -2297,6 +2297,8 @@ void commonClassSetup(BoxedClass* cls) {
if
(
PyType_Check
(
b
))
inherit_slots
(
cls
,
static_cast
<
BoxedClass
*>
(
b
));
}
assert
(
cls
->
tp_dict
&&
cls
->
tp_dict
->
cls
==
attrwrapper_cls
);
}
extern
"C"
void
PyType_Modified
(
PyTypeObject
*
type
)
noexcept
{
...
...
src/runtime/builtin_modules/builtins.cpp
View file @
25922a87
...
...
@@ -483,8 +483,8 @@ Box* issubclass_func(Box* child, Box* parent) {
return
boxBool
(
classobjIssubclass
(
static_cast
<
BoxedClassobj
*>
(
child
),
static_cast
<
BoxedClassobj
*>
(
parent
)));
}
assert
(
isSubclass
(
child
->
cls
,
type_cls
)
);
if
(
parent
->
cls
!=
type_cls
)
RELEASE_ASSERT
(
isSubclass
(
child
->
cls
,
type_cls
),
""
);
if
(
!
isSubclass
(
parent
->
cls
,
type_cls
)
)
return
False
;
return
boxBool
(
isSubclass
(
static_cast
<
BoxedClass
*>
(
child
),
static_cast
<
BoxedClass
*>
(
parent
)));
...
...
src/runtime/capi.cpp
View file @
25922a87
...
...
@@ -373,30 +373,6 @@ extern "C" int PyObject_Not(PyObject* o) noexcept {
Py_FatalError
(
"unimplemented"
);
}
extern
"C"
PyObject
*
PyEval_CallObjectWithKeywords
(
PyObject
*
func
,
PyObject
*
arg
,
PyObject
*
kw
)
noexcept
{
PyObject
*
result
;
if
(
arg
==
NULL
)
{
arg
=
PyTuple_New
(
0
);
if
(
arg
==
NULL
)
return
NULL
;
}
else
if
(
!
PyTuple_Check
(
arg
))
{
PyErr_SetString
(
PyExc_TypeError
,
"argument list must be a tuple"
);
return
NULL
;
}
else
Py_INCREF
(
arg
);
if
(
kw
!=
NULL
&&
!
PyDict_Check
(
kw
))
{
PyErr_SetString
(
PyExc_TypeError
,
"keyword list must be a dictionary"
);
Py_DECREF
(
arg
);
return
NULL
;
}
result
=
PyObject_Call
(
func
,
arg
,
kw
);
Py_DECREF
(
arg
);
return
result
;
}
extern
"C"
PyObject
*
PyObject_Call
(
PyObject
*
callable_object
,
PyObject
*
args
,
PyObject
*
kw
)
noexcept
{
try
{
if
(
kw
)
...
...
src/runtime/objmodel.cpp
View file @
25922a87
...
...
@@ -383,6 +383,9 @@ void BoxedClass::finishInitialization() {
tp_clear
=
tp_base
->
tp_clear
;
}
assert
(
!
this
->
tp_dict
);
this
->
tp_dict
=
makeAttrWrapper
(
this
);
commonClassSetup
(
this
);
}
...
...
@@ -1523,16 +1526,6 @@ extern "C" Box* getattr(Box* obj, const char* attr) {
static
StatCounter
slowpath_getattr
(
"slowpath_getattr"
);
slowpath_getattr
.
log
();
bool
is_dunder
=
(
attr
[
0
]
==
'_'
&&
attr
[
1
]
==
'_'
);
if
(
is_dunder
)
{
if
(
strcmp
(
attr
,
"__dict__"
)
==
0
)
{
// TODO this is wrong, should be added at the class level as a getset
if
(
obj
->
cls
->
instancesHaveHCAttrs
())
return
makeAttrWrapper
(
obj
);
}
}
if
(
VERBOSITY
()
>=
2
)
{
#if !DISABLE_STATS
std
::
string
per_name_stat_name
=
"getattr__"
+
std
::
string
(
attr
);
...
...
@@ -1578,21 +1571,6 @@ extern "C" Box* getattr(Box* obj, const char* attr) {
return
val
;
}
if
(
is_dunder
)
{
// There's more to it than this:
if
(
strcmp
(
attr
,
"__class__"
)
==
0
)
{
assert
(
obj
->
cls
!=
instance_cls
);
// I think in this case __class__ is supposed to be the classobj?
return
obj
->
cls
;
}
// This doesn't belong here either:
if
(
strcmp
(
attr
,
"__bases__"
)
==
0
&&
isSubclass
(
obj
->
cls
,
type_cls
))
{
BoxedClass
*
cls
=
static_cast
<
BoxedClass
*>
(
obj
);
assert
(
cls
->
tp_bases
);
return
cls
->
tp_bases
;
}
}
raiseAttributeError
(
obj
,
attr
);
}
...
...
@@ -1658,44 +1636,6 @@ void setattrInternal(Box* obj, const std::string& attr, Box* val, SetattrRewrite
}
}
if
(
attr
==
"__class__"
)
{
if
(
!
isSubclass
(
val
->
cls
,
type_cls
))
raiseExcHelper
(
TypeError
,
"__class__ must be set to new-style class, not '%s' object"
,
val
->
cls
->
tp_name
);
auto
new_cls
=
static_cast
<
BoxedClass
*>
(
val
);
// Conservative Pyston checks: make sure that both classes are derived only from Pyston types,
// and that they don't define any extra C-level fields
RELEASE_ASSERT
(
val
->
cls
==
type_cls
,
""
);
RELEASE_ASSERT
(
obj
->
cls
->
cls
==
type_cls
,
""
);
for
(
auto
_base
:
static_cast
<
BoxedTuple
*>
(
obj
->
cls
->
tp_mro
)
->
elts
)
{
BoxedClass
*
base
=
static_cast
<
BoxedClass
*>
(
_base
);
RELEASE_ASSERT
(
base
->
is_pyston_class
,
""
);
}
for
(
auto
_base
:
static_cast
<
BoxedTuple
*>
(
new_cls
->
tp_mro
)
->
elts
)
{
BoxedClass
*
base
=
static_cast
<
BoxedClass
*>
(
_base
);
RELEASE_ASSERT
(
base
->
is_pyston_class
,
""
);
}
RELEASE_ASSERT
(
obj
->
cls
->
tp_basicsize
==
object_cls
->
tp_basicsize
+
sizeof
(
HCAttrs
)
+
sizeof
(
Box
**
),
""
);
RELEASE_ASSERT
(
new_cls
->
tp_basicsize
==
object_cls
->
tp_basicsize
+
sizeof
(
HCAttrs
)
+
sizeof
(
Box
**
),
""
);
RELEASE_ASSERT
(
obj
->
cls
->
attrs_offset
!=
0
,
""
);
RELEASE_ASSERT
(
new_cls
->
attrs_offset
!=
0
,
""
);
RELEASE_ASSERT
(
obj
->
cls
->
tp_weaklistoffset
!=
0
,
""
);
RELEASE_ASSERT
(
new_cls
->
tp_weaklistoffset
!=
0
,
""
);
// Normal Python checks.
// TODO there are more checks to add here, and they should throw errors not asserts
RELEASE_ASSERT
(
obj
->
cls
->
tp_basicsize
==
new_cls
->
tp_basicsize
,
""
);
RELEASE_ASSERT
(
obj
->
cls
->
tp_dictoffset
==
new_cls
->
tp_dictoffset
,
""
);
RELEASE_ASSERT
(
obj
->
cls
->
tp_weaklistoffset
==
new_cls
->
tp_weaklistoffset
,
""
);
RELEASE_ASSERT
(
obj
->
cls
->
attrs_offset
==
new_cls
->
attrs_offset
,
""
);
obj
->
cls
=
new_cls
;
return
;
}
// Lookup a descriptor
Box
*
descr
=
NULL
;
RewriterVar
*
r_descr
=
NULL
;
...
...
@@ -3769,6 +3709,9 @@ Box* typeNew(Box* _cls, Box* arg1, Box* arg2, Box** _args) {
// TODO: how much of these should be in BoxedClass::finishInitialization()?
made
->
tp_dictoffset
=
base
->
tp_dictoffset
;
if
(
!
made
->
getattr
(
"__dict__"
)
&&
(
made
->
instancesHaveHCAttrs
()
||
made
->
instancesHaveDictAttrs
()))
made
->
giveAttr
(
"__dict__"
,
dict_descr
);
for
(
const
auto
&
p
:
attr_dict
->
d
)
{
auto
k
=
coerceUnicodeToStr
(
p
.
first
);
...
...
src/runtime/set.cpp
View file @
25922a87
...
...
@@ -231,6 +231,14 @@ Box* setUpdate(BoxedSet* self, BoxedTuple* args) {
return
None
;
}
Box
*
setCopy
(
BoxedSet
*
self
)
{
assert
(
self
->
cls
==
set_cls
);
BoxedSet
*
rtn
=
new
BoxedSet
();
rtn
->
s
.
insert
(
self
->
s
.
begin
(),
self
->
s
.
end
());
return
rtn
;
}
Box
*
setContains
(
BoxedSet
*
self
,
Box
*
v
)
{
assert
(
self
->
cls
==
set_cls
||
self
->
cls
==
frozenset_cls
);
return
boxBool
(
self
->
s
.
count
(
v
)
!=
0
);
...
...
@@ -313,6 +321,8 @@ void setupSet() {
set_cls
->
giveAttr
(
"clear"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
setClear
,
NONE
,
1
)));
set_cls
->
giveAttr
(
"update"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
setUpdate
,
NONE
,
1
,
0
,
true
,
false
)));
set_cls
->
giveAttr
(
"copy"
,
new
BoxedFunction
(
boxRTFunction
((
void
*
)
setCopy
,
UNKNOWN
,
1
)));
set_cls
->
freeze
();
frozenset_cls
->
freeze
();
}
...
...
src/runtime/types.cpp
View file @
25922a87
This diff is collapsed.
Click to expand it.
src/runtime/types.h
View file @
25922a87
...
...
@@ -630,5 +630,10 @@ Box* makeAttrWrapper(Box* b);
// Our default for tp_alloc:
extern
"C"
PyObject
*
PystonType_GenericAlloc
(
BoxedClass
*
cls
,
Py_ssize_t
nitems
)
noexcept
;
// A descriptor that you can add to your class to provide instances with a __dict__ accessor.
// Classes created in Python get this automatically, but builtin types (including extension types)
// are supposed to add one themselves. type_cls and function_cls do this, for example.
extern
Box
*
dict_descr
;
}
#endif
test/tests/collections_test.py
View file @
25922a87
...
...
@@ -5,6 +5,7 @@ print o.items()
for
i
in
xrange
(
30
):
o
[(
i
**
2
)
^
0xace
]
=
i
print
o
print
o
.
copy
()
print
collections
.
deque
().
maxlen
...
...
test/tests/dict_setting.py
0 → 100644
View file @
25922a87
# expected: fail
# - we don't support setting __dict__ yet
class
C
(
object
):
pass
c1
=
C
()
c2
=
C
()
c1
.
a
=
2
c1
.
b
=
3
c2
.
a
=
4
c2
.
b
=
5
def
p
():
print
sorted
(
c1
.
__dict__
.
items
()),
sorted
(
c2
.
__dict__
.
items
())
p
()
c1
.
__dict__
=
c2
.
__dict__
p
()
c1
.
a
=
6
c2
.
b
=
7
p
()
test/tests/dir.py
View file @
25922a87
...
...
@@ -13,7 +13,8 @@ def fake():
class
TestClass
(
object
):
def
__init__
(
self
):
self
.
__dict__
=
{
n
:
n
for
n
in
fake
()}
for
n
in
fake
():
setattr
(
self
,
n
,
n
)
def
__dir__
(
self
):
return
fake
()
...
...
@@ -21,7 +22,8 @@ class TestClass(object):
class
TestClass2
(
object
):
def
__init__
(
self
):
self
.
__dict__
=
{
'dictAttr'
:
False
,
'attribute1'
:
None
}
self
.
dictAttr
=
False
self
.
attribute1
=
None
self
.
other_attribute
=
False
def
method1
(
self
):
...
...
@@ -63,7 +65,7 @@ test_in_dir(['__str__', '__new__', '__repr__', '__dir__', '__init__',
test_in_dir
([
'__str__'
,
'__new__'
,
'__repr__'
,
'__dir__'
,
'__init__'
,
'__module__'
,
'method1'
,
'dictAttr'
,
'attribute1'
],
TestClass2
)
test_in_dir
([
'attribute1'
,
'dictAttr'
,
'__init__'
,
'__module__'
,
'method1'
,
'other_attribute'
,
'__dict__'
],
TestClass2
())
'other_attribute'
],
TestClass2
())
test_in_dir
(
fake
(),
TestClass
())
print
len
(
fake
())
==
len
(
dir
(
TestClass
()))
...
...
@@ -91,3 +93,7 @@ for x in d1:
l
.
append
(
x
)
l
.
sort
()
print
l
c
=
C1
()
c
.
__dict__
.
update
(
dict
(
a
=
1
,
b
=
5
))
print
sorted
(
c
.
__dict__
.
items
())
test/tests/object_reduce.py
0 → 100644
View file @
25922a87
o
=
object
()
r
=
o
.
__reduce__
()
print
type
(
r
),
len
(
r
)
class
C
(
object
):
def
__repr__
(
self
):
return
"<C>"
c
=
C
()
r
=
c
.
__reduce__
()
print
type
(
r
),
len
(
r
)
assert
len
(
r
)
==
2
c2
=
r
[
0
](
*
r
[
1
])
print
c
,
c2
test/tests/set.py
View file @
25922a87
...
...
@@ -74,3 +74,8 @@ except KeyError, e:
def
f2
():
print
{
5
}
f2
()
s
=
set
([])
s2
=
s
.
copy
()
s
.
add
(
1
)
print
s
,
s2
test/tests/special_getattrs.py
0 → 100644
View file @
25922a87
def
show
(
obj
):
print
obj
.
__class__
for
b
in
obj
.
__class__
.
__mro__
:
print
b
,
print
if
isinstance
(
obj
,
type
):
print
obj
.
__bases__
,
obj
.
__mro__
if
hasattr
(
obj
,
"__dict__"
):
print
sorted
(
obj
.
__dict__
.
items
())
show
(
object
())
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